New addition: Overseerr
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user