侧边栏壁纸
博主头像
Nas小白星球 博主等级

Nas新手入门|家庭自动观影系统

  • 累计撰写 42 篇文章
  • 累计创建 1 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

firefox|火狐浏览器

滔哥有点菜
2025-07-04 / 0 评论 / 0 点赞 / 3 阅读 / 0 字
version: '3.3'

services:
  firefox:
    image: jlesage/firefox  # 使用 jlesage/firefox 镜像
    container_name: firefox
    network_mode: bridge
    ports:
      - "5800:5800"  # noVNC 网页访问端口
      - "5959:5900"  # VNC 访问端口
    environment:
      - DISPLAY_WIDTH=1280  # 设置显示宽度
      - DISPLAY_HEIGHT=720   # 设置显示高度
      - VNC_PASSWORD=Password  # 设置 VNC 密码
    volumes:
      - /volume1/docker/firefox/config:/config  # 持久化配置和数据
      - /volume1/docker/firefox/fonts:/usr/share/fonts/other
      - /volume1/docker/firefox/config/downloads:/config/downloads
    restart: unless-stopped  # 容器意外停止时自动重启

0

评论区