Files
2026-05-20 19:56:11 +02:00

34 lines
807 B
YAML

services:
tunarr:
image: chrisbenincasa/tunarr:latest
container_name: tunarr
environment:
PUID: 1001
PGID: 1001
TZ: Europe/Copenhagen
volumes:
# - nfs_data:/tunarr
- /srv/tunarr:/config/tunarr
restart: unless-stopped
ports:
- 8088:8000
networks:
- traefik
labels:
- "traefik.enable=true"
# - "traefik.http.routers.tunarr.tls=true"
# - "traefik.http.routers.tunarr.entrypoints=websecure"
# - "traefik.http.routers.tunarr.rule=Host(`tunarr.knast.cc`)"
# - "traefik.http.routers.tunarr.tls.certresolver=letsencr"
- "traefik.http.services.tunarr.loadbalancer.server.port=8088"
- traefik.docker.network=traefik
networks:
traefik:
external: true
volumes:
nfs_data:
external: true