From 175e0fe42277102da69c06e9deeb3395d8192ab1 Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Sun, 15 Feb 2026 21:44:52 +0100 Subject: [PATCH] Create compose file for seer --- seer/compose.yaml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 seer/compose.yaml diff --git a/seer/compose.yaml b/seer/compose.yaml new file mode 100644 index 0000000..3d6afd7 --- /dev/null +++ b/seer/compose.yaml @@ -0,0 +1,35 @@ +services: + seer: + image: ghcr.io/seerr-team/seerr:v3.0.1 + # init: true + container_name: seer + volumes: + # Config + - $APPDATA/seer:/app/config + environment: + PUID: $PUID + PGID: $PGID + TZ: $TZ + LOG_LEVEL: debug + PORT: 5055 + 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 + # labels: + # - "traefik.enable=true" + # - "traefik.http.routers.seer.rule=Host(`seer.${LOCAL_DOMAIN}`)" + # - "traefik.http.routers.seer.entrypoints=https" + # - "traefik.http.routers.seer.tls=true" + # - "traefik.http.services.seer.loadbalancer.server.port=5055" + # networks: + # - proxy + restart: unless-stopped + +# networks: +# proxy: +# external: true \ No newline at end of file