Compare commits

...

2 Commits

Author SHA1 Message Date
derekc 2c4545fb15 added arr network to containers 2026-06-18 16:04:40 -07:00
derekc 835815e349 updated seerr nfs compose file to work with new settings 2026-06-18 16:01:35 -07:00
4 changed files with 45 additions and 6 deletions
+6
View File
@@ -21,6 +21,8 @@ services:
resources: resources:
limits: limits:
memory: 512m memory: 512m
networks:
- arr_network
restart: unless-stopped restart: unless-stopped
volumes: volumes:
@@ -31,3 +33,7 @@ volumes:
type: nfs type: nfs
o: "addr=${FLARESOLVERR_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4" o: "addr=${FLARESOLVERR_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4"
device: "${FLARESOLVERR_NFS_DEVICE}" device: "${FLARESOLVERR_NFS_DEVICE}"
networks:
arr_network:
external: true
+6
View File
@@ -22,6 +22,8 @@ services:
resources: resources:
limits: limits:
memory: 512m memory: 512m
networks:
- arr_network
restart: unless-stopped restart: unless-stopped
volumes: volumes:
@@ -39,3 +41,7 @@ volumes:
type: nfs type: nfs
o: "addr=${JACKETT_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4" o: "addr=${JACKETT_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4"
device: "${JACKETT_DOWNLOADS_NFS_DEVICE}" device: "${JACKETT_DOWNLOADS_NFS_DEVICE}"
networks:
arr_network:
external: true
+25 -4
View File
@@ -1,17 +1,38 @@
services: services:
app: app:
image: seerr/seerr:latest image: seerr/seerr:${SEERR_VERSON:-latest}
init: true init: true
environment: environment:
- LOG_LEVEL=debug - LOG_LEVEL=debug
- TZ=${SEERR_TZ} - TZ=${SEERR_TZ:-America/Los_Angeles}
- PORT=5055 - PORT=5055
ports: ports:
- ${SEERR_PORT}:5055 - ${SEERR_PORT}:5055
volumes: volumes:
- seerr:/app/config - seerr-app:/app/config
healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1"]
start_period: 20s
timeout: 3s
interval: 15s
retries: 3
deploy:
resources:
limits:
memory: 512M
networks:
- arr_network
restart: unless-stopped restart: unless-stopped
volumes: volumes:
seerr: seerr-app:
name: seerr-app
driver: local
driver_opts:
type: nfs
o: "addr=${SEERR_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4"
device: "${SEERR_NFS_DEVICE}"
networks:
arr_network:
external: true external: true
@@ -36,6 +36,8 @@ services:
resources: resources:
limits: limits:
memory: 512m memory: 512m
networks:
- arr_network
restart: unless-stopped restart: unless-stopped
volumes: volumes:
@@ -46,3 +48,7 @@ volumes:
type: nfs type: nfs
o: "addr=${TRANSMISSION_OPENVPN_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4" o: "addr=${TRANSMISSION_OPENVPN_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4"
device: "${TRANSMISSION_OPENVPN_NFS_DEVICE}" device: "${TRANSMISSION_OPENVPN_NFS_DEVICE}"
networks:
arr_network:
external: true