New addition: Overseerr

This commit is contained in:
2023-09-09 16:10:12 +02:00
parent 5151f2b907
commit 19f61a8a80
2 changed files with 26 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# Uncomment and change the following variables if you want to use them.
#RESTART=unless-stopped
#SYNOLOGY_VOLUME=volume1
#STACK_NAME=overseerr
#TZ=Europe/Amsterdam
#OVERSEERR_CONTAINER_NAME=Overseerr
#OVERSEERR_TAG=latest
#OVERSEERR_PORT=5055
#OVERSEERR_LOG_LEVEL=debug
+17
View File
@@ -0,0 +1,17 @@
services:
# Overseerr
overseerr:
container_name: ${OVERSEERR_CONTAINER_NAME:-Overseerr}
hostname: overseerr
image: sctx/overseerr:${OVERSEERR_TAG:-latest}
restart: ${RESTART:-unless-stopped}
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:${OVERSEERR_PORT:-5055}/
environment:
TZ: ${TZ:-Europe/Amsterdam}
PORT: ${OVERSEERR_PORT:-5055}
LOG_LEVEL: ${OVERSEERR_LOG_LEVEL:-debug}
ports:
- ${OVERSEERR_PORT:-5055}:${OVERSEERR_PORT:-5055}
volumes:
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-overseerr}/${OVERSEERR_CONTAINER_NAME:-Overseerr}/app/config:/app/config