17 lines
533 B
YAML
17 lines
533 B
YAML
services:
|
|
browser:
|
|
image: lscr.io/linuxserver/firefox:latest
|
|
container_name: firefox
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/New_York
|
|
- HTTP_PROXY=http://localhost:8888 # Set the HTTP proxy to Gluetun
|
|
- HTTPS_PROXY=http://localhost:8888 # Set the HTTPS proxy to Gluetun
|
|
network_mode: "container:gluetun"
|
|
shm_size: "1gb"
|
|
volumes:
|
|
- /home/fejy/docker/firefox/config:/config:rw
|
|
- /home/fejy/docker/firefox/downloads:/downloads:rw
|
|
restart: unless-stopped
|