updated seerr nfs compose file to work with new settings
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user