diff --git a/seerr/docker-compose.yaml b/seerr/docker-compose.yaml new file mode 100644 index 0000000..3f4fa91 --- /dev/null +++ b/seerr/docker-compose.yaml @@ -0,0 +1,20 @@ +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 \ No newline at end of file