27 lines
491 B
YAML
27 lines
491 B
YAML
version: '3'
|
|
|
|
networks:
|
|
External:
|
|
external: true
|
|
AppsExternal:
|
|
external: true
|
|
|
|
services:
|
|
firefox:
|
|
image: lscr.io/linuxserver/firefox
|
|
container_name: firefox
|
|
environment:
|
|
- PUID=1002
|
|
- PGID=1002
|
|
- TZ=Europe/Stockholm
|
|
volumes:
|
|
- /home/ubuntu/docker_volumes/firefox/config:/config
|
|
ports:
|
|
- 4000:3000
|
|
shm_size: "1gb"
|
|
networks:
|
|
Apps:
|
|
ipv4_address: 10.23.0.222
|
|
AppsExternal:
|
|
restart: unless-stopped
|