From fc992ae2b493e1825814817a0307630277d06e1a Mon Sep 17 00:00:00 2001 From: poslop Date: Sun, 7 Jan 2024 16:27:46 -0600 Subject: [PATCH] librewolf build --- docker-compose.yml | 56 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 4d3258e..ce9a58c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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