added overseer

This commit is contained in:
Régis Tremblay Lefrançois
2024-11-28 07:54:54 -05:00
parent bdf411a1fc
commit 64ac179262
2 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# documentation: https://docs.overseerr.dev/getting-started/installation#docker
# slogan: Overseerr is a request management and media discovery tool built to work with your existing Plex ecosystem.
# tags: media,request,plex,sonarr,radarr
# logo: svgs/overseerr.svg
# port: 5055
services:
overseerr:
image: sctx/overseerr:latest
environment:
- SERVICE_FQDN_OVERSEERR_5055
- PUID=1000
- PGID=1000
- TZ=${TZ:-America/Toronto}
volumes:
- overseerr-config:/app/config
healthcheck:
test:
[
"CMD",
"wget",
"--tries",
"1",
"--no-verbose",
"--spider",
"http://localhost:5055/api/v1/status",
]
interval: 2s
timeout: 10s
retries: 15