docker run -d \
--name=firefox \
--security-opt seccomp=unconfined `#optional` \
-e PUID=0 \
-e PGID=0 \
-e TZ=Asia/Shanghai \
-e PASSWORD=密码 \
-e CUSTOM_USER=账号 \
-e DOCKER_MODS=linuxserver/mods:universal-internationalization \
-e LC_ALL=zh_CN.UTF-8 \
-p 3000:3000 \
-p 3001:3001 \
-v /目录:/config \
--restart unless-stopped \
linuxserver/firefox:latest
-e DOCKER_MODS 和 -e LC_ALL 为中文支持MOD。
3000为http端口,3001为https端口
-e PASSWORD 和 -e CUSTOM_USER如不需要可以删除