18 lines
664 B
YAML
18 lines
664 B
YAML
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
|