docker运行ubuntu容器,自带Firefox浏览器

通过本地浏览器http远程控制

效果图

docker-compose.yml:

services:
  webtop:
    #image: lscr.io/linuxserver/webtop:latest
    #image: lscr.io/linuxserver/webtop:ubuntu-mate
    #image: lscr.io/linuxserver/webtop:debian-kde
    #image: lscr.io/linuxserver/webtop:alpine-kde
    image: lscr.io/linuxserver/webtop:ubuntu-kde
    container_name: webtop
    security_opt:
      - seccomp:unconfined #optional
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Asia/Shanghai
      - SUBFOLDER=/ #optional
      - TITLE=Webtop #optional
      - CUSTOM_USER=admin # http管理登录账号
      - PASSWORD=password # http管理登录密码
      - DRINODE=/dev/dri/renderD128 #optional
      - DOCKER_MODS=linuxserver/mods:universal-package-install
      - INSTALL_PACKAGES=fonts-noto-cjk fonts-noto-cjk-extra fonts-noto-core fonts-noto-mono vim wget curl htop lsof
      - LC_ALL=zh_CN.UTF-8
    volumes:
      - ./data:/config
      - /var/run/docker.sock:/var/run/docker.sock #optional
    ports:
      #- 23000:3000  # http管理
      - 23001:3001  # https管理
    devices:
      - /dev/dri:/dev/dri #optional
    shm_size: "2gb" #optional 个人推荐给2GB内存
    restart: unless-stopped
我测试下来最喜欢ubuntu-kde的界面,你也可以选其他的镜像,比如alpine+xfce(也即是镜像lscr.io/linuxserver/webtop:latest),这个的资源占用最少

容器启动后通过docker-compose logs -f查看安装进度

全部安装好后,可访问https://ip:23001 管理,提示证书不可信,手动点一下就好了,加密一下避免中间商

输入docker-compose.yml里面设置的密码

浏览器在这里


启用本地输入法即可输入中文

还需要解决本地中文输入可能失效的问题,在容器的宿主机中添加脚本webtop_observer.sh:

#!/bin/bash

# 获取 webtop 容器 ID
webtop_container=$(docker ps -q --filter "name=webtop")
if [ -z "$webtop_container" ]; then
    echo "未找到名为 'webtop' 的 Docker 容器!请检查容器是否正在运行。"
    exit 1
fi
echo "Webtop 容器 ID: $webtop_container"

# 创建 Python 监控脚本
cat <<EOF > /tmp/webtop_input_error.py
import subprocess
import time

webtop_container = "$webtop_container"

output = subprocess.Popen(
    ["docker", "logs", webtop_container, "-f"],
    stdout=subprocess.PIPE,
    stderr=subprocess.PIPE,
    text=True,
    encoding='utf-8',
    errors='ignore',
)

start_time = time.time()
for line in output.stdout:
    if time.time() - start_time < 1:
        continue
    if "Input: Failure" in line:
        print("检测到输入错误,正在执行 setxkbmap...")
        subprocess.getoutput(f'docker exec {webtop_container} setxkbmap')
EOF

# 运行 Python 监控脚本
python3 /tmp/webtop_input_error.py

给脚本可执行权限

chmod +x webtop_observer.sh

后台运行脚本:

nohup ./webtop_observer.sh > /dev/null 2>&1 &

基本可以当一个正常的操作系统用,如果要求不是很多的话


尝试模仿着做了个ubuntu+kde桌面+xrdp控制的版本,结果资源占用有点高,,没有别人优化的好

https://drive.dreamdusk.com/api/public/dl/jk7UMjwf/ubuntu-kde-xrdp.zip

Last modification:March 23, 2025
V50%看看实力