Files
overseer/docker-compose.yml
2026-02-21 15:00:10 +01:00

22 lines
547 B
YAML

services:
overseerr:
image: ghcr.io/seerr-team/seerr:latest
init: true
container_name: seerr
environment:
- PUID=1026
- PGID=100
- LOG_LEVEL=info
- TZ=Europe/Paris
- PORT=5055 #optional
ports:
- 5055:5055
volumes:
- /volume1/docker/overseerr/config:/app/config
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
start_period: 20s
timeout: 3s
interval: 15s
retries: 3
restart: unless-stopped