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