29 lines
532 B
YAML
29 lines
532 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
|
|
ports:
|
|
- "5800:5800"
|
|
networks:
|
|
- firefox
|
|
volumes:
|
|
- "/docker/firefox/config:/config:rw"
|
|
logging:
|
|
driver: "gelf"
|
|
options:
|
|
gelf-address: "udp://192.168.1.250:12201"
|
|
|
|
|
|
|