23 lines
458 B
YAML
23 lines
458 B
YAML
---
|
|
version: "3.8"
|
|
services:
|
|
firefox:
|
|
image: ghcr.io/linuxserver/firefox:latest
|
|
container_name: firefox
|
|
network_mode: bridge
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Amsterdam
|
|
volumes:
|
|
- firefox_config:/config
|
|
ports:
|
|
- 48313:3000
|
|
shm_size: "1gb"
|
|
restart: unless-stopped
|
|
labels:
|
|
- com.centurylinklabs.watchtower.enable=true
|
|
|
|
volumes:
|
|
firefox_config:
|
|
external: false |