28 lines
840 B
YAML
28 lines
840 B
YAML
prowlarr:
|
|
deploy:
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.prowlarr-rtr.entrypoints: "websecure"
|
|
traefik.http.routers.prowlarr-rtr.middlewares: "authentik@swarm"
|
|
traefik.http.routers.prowlarr-rtr.rule: "Host(`prowlarr.your.domain`)"
|
|
traefik.http.routers.prowlarr-rtr.service: "prowlarr"
|
|
traefik.http.services.prowlarr.loadbalancer.server.port: "9696"
|
|
replicas: 1
|
|
environment:
|
|
PUID: 10009
|
|
PGID: 10009
|
|
UMASK: 0002
|
|
TZ: "Etc/UTC"
|
|
healthcheck:
|
|
test: "curl -f http://localhost:9696"
|
|
interval: 2m
|
|
timeout: 5s
|
|
start_period: 20s
|
|
hostname: "prowlarr"
|
|
image: "linuxserver/prowlarr:latest"
|
|
networks:
|
|
- homelab
|
|
restart: on-failure
|
|
volumes:
|
|
- "/srv/data/docker/prowlarr/config:/config"
|