librewolf build

This commit is contained in:
poslop
2024-01-07 16:27:46 -06:00
parent 75da640083
commit fc992ae2b4

View File

@@ -12,6 +12,55 @@ networks:
name: arr
services:
firefox:
image: lscr.io/linuxserver/firefox:latest
container_name: firefox
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- firefox:/config
ports:
- 3003:3000
- 3004:3001
shm_size: "1gb"
restart: unless-stopped
librewolf:
image: d3ec5f138a5c
container_name: librewolf
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- librewolf-conf:/config
ports:
- 3000:3000
- 3001:3001
shm_size: "10gb"
restart: unless-stopped
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: syncthing
environment:
- PUID=1000
- PGID=1000
volumes:
- syncdata:/config
- /mnt/nextcloud:/mnt/files
ports:
- 8384:8384
- 22000:22000/tcp
- 22000:22000/udp
- 21027:21027/udp
restart: unless-stopped
caddy:
image: caddy:latest
@@ -354,4 +403,9 @@ volumes:
name: p2pool-data
swag:
name: swag
syncdata:
name: syncdata
librewolf-conf:
name: librewolf-conf
firefox:
name: firefox