initial comit
This commit is contained in:
parent
400c9f08e8
commit
736b9bb088
|
|
@ -0,0 +1,3 @@
|
|||
# firefox
|
||||
|
||||
https://hub.docker.com/r/jlesage/firefox
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
# 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"
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue