20 lines
484 B
YAML
20 lines
484 B
YAML
services:
|
|
seerr:
|
|
image: ghcr.io/seerr-team/seerr:latest
|
|
container_name: seerr
|
|
environment:
|
|
- LOG_LEVEL=debug
|
|
- PUID=0
|
|
- PGID=0
|
|
- TZ=America/Chicago
|
|
volumes:
|
|
- /arr/overseerr/config:/config
|
|
ports:
|
|
- 5055:5055
|
|
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 |