From 19f61a8a8030db43e201032bbaf2a24f690d37fc Mon Sep 17 00:00:00 2001 From: Michel Date: Sat, 9 Sep 2023 16:10:12 +0200 Subject: [PATCH] New addition: Overseerr --- overseerr/.env.sample | 9 +++++++++ overseerr/compose.yml | 17 +++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 overseerr/.env.sample create mode 100644 overseerr/compose.yml diff --git a/overseerr/.env.sample b/overseerr/.env.sample new file mode 100644 index 0000000..274f1e7 --- /dev/null +++ b/overseerr/.env.sample @@ -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 \ No newline at end of file diff --git a/overseerr/compose.yml b/overseerr/compose.yml new file mode 100644 index 0000000..ff6b7ee --- /dev/null +++ b/overseerr/compose.yml @@ -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