Docker安装Firefox浏览器

镜像

jlesage/firefox:latest

安装命令

docker run -d \
  --name=firefox \
  --restart=unless-stopped \
  -p <Web端口>:5800 \
  -p <VNC端口>:5900 \
  -v /<磁盘路径>/firefox:/config \
  -e VNC_PASSWORD=<VNC密码> \
  jlesage/firefox:latest

如何使用

打开浏览器访问:http://ip:<Web端口>


文档仓库 » Docker安装Firefox浏览器