33 lines
770 B
YAML
33 lines
770 B
YAML
services:
|
|
tunarr:
|
|
image: chrisbenincasa/tunarr:latest
|
|
container_name: tunarr
|
|
environment:
|
|
PUID: 1001
|
|
PGID: 1001
|
|
TZ: Europe/Copenhagen
|
|
volumes:
|
|
- nfs_data:/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
|