Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2c4545fb15 | |||
| 835815e349 |
@@ -21,6 +21,8 @@ services:
|
||||
resources:
|
||||
limits:
|
||||
memory: 512m
|
||||
networks:
|
||||
- arr_network
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
@@ -31,3 +33,7 @@ volumes:
|
||||
type: nfs
|
||||
o: "addr=${FLARESOLVERR_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4"
|
||||
device: "${FLARESOLVERR_NFS_DEVICE}"
|
||||
|
||||
networks:
|
||||
arr_network:
|
||||
external: true
|
||||
@@ -22,6 +22,8 @@ services:
|
||||
resources:
|
||||
limits:
|
||||
memory: 512m
|
||||
networks:
|
||||
- arr_network
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
@@ -39,3 +41,7 @@ volumes:
|
||||
type: nfs
|
||||
o: "addr=${JACKETT_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4"
|
||||
device: "${JACKETT_DOWNLOADS_NFS_DEVICE}"
|
||||
|
||||
networks:
|
||||
arr_network:
|
||||
external: true
|
||||
@@ -1,17 +1,38 @@
|
||||
services:
|
||||
app:
|
||||
image: seerr/seerr:latest
|
||||
image: seerr/seerr:${SEERR_VERSON:-latest}
|
||||
init: true
|
||||
environment:
|
||||
- LOG_LEVEL=debug
|
||||
- TZ=${SEERR_TZ}
|
||||
- TZ=${SEERR_TZ:-America/Los_Angeles}
|
||||
- PORT=5055
|
||||
ports:
|
||||
- ${SEERR_PORT}:5055
|
||||
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
|
||||
|
||||
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
|
||||
@@ -36,6 +36,8 @@ services:
|
||||
resources:
|
||||
limits:
|
||||
memory: 512m
|
||||
networks:
|
||||
- arr_network
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
@@ -46,3 +48,7 @@ volumes:
|
||||
type: nfs
|
||||
o: "addr=${TRANSMISSION_OPENVPN_NFS_SERVER},rw,noatime,rsize=65536,wsize=65536,timeo=600,nfsvers=4"
|
||||
device: "${TRANSMISSION_OPENVPN_NFS_DEVICE}"
|
||||
|
||||
networks:
|
||||
arr_network:
|
||||
external: true
|
||||
|
||||
Reference in New Issue
Block a user