25 lines
487 B
YAML
25 lines
487 B
YAML
services:
|
|
firefox:
|
|
container_name: firefox
|
|
image: lscr.io/linuxserver/firefox:latest
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
- START_DOCKER=false
|
|
- LC_ALL=en_US.UTF-8
|
|
- NO_DECOR=false
|
|
shm_size: "2gb"
|
|
networks:
|
|
- reverse-proxy
|
|
ports:
|
|
- 3101:3001
|
|
restart: always
|
|
volumes:
|
|
- ${DOCKER_CONFIGS}/firefox/config:/config
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
name: reverse-proxy
|
|
external: true
|