35 lines
669 B
YAML
35 lines
669 B
YAML
# Docker Compose File für Firefox per VNC
|
|
# docker-compose -f docker-compose.wifirefoxzarr.yml up -d
|
|
version: '3.5'
|
|
|
|
networks:
|
|
firefox:
|
|
|
|
services:
|
|
firefox:
|
|
image: jlesage/firefox:latest
|
|
container_name: firefox
|
|
restart: always
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Berlin
|
|
- LANG=de_DE.UTF-8
|
|
- KEEP_APP_RUNNING=1
|
|
- DARK_MODE=1
|
|
- WEB_AUDIO=1
|
|
- SECURE_CONNECTION=1
|
|
- WEB_AUTHENTICATION=1
|
|
ports:
|
|
- "5800:5800"
|
|
networks:
|
|
- firefox
|
|
volumes:
|
|
- "/docker/firefox/config:/config:rw"
|
|
logging:
|
|
driver: "gelf"
|
|
options:
|
|
gelf-address: "udp://192.168.1.250:12201"
|
|
|
|
|
|
|