35 lines
886 B
YAML
35 lines
886 B
YAML
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 |