diff --git a/jellyfin/docker-compose.yml b/jellyfin/docker-compose.yml index fcdcf30..1d94dbe 100644 --- a/jellyfin/docker-compose.yml +++ b/jellyfin/docker-compose.yml @@ -39,4 +39,4 @@ networks: volumes: nfs_data: - external: true \ No newline at end of file + external: true diff --git a/tunarr/docker-compose.yml b/tunarr/docker-compose.yml new file mode 100644 index 0000000..244746a --- /dev/null +++ b/tunarr/docker-compose.yml @@ -0,0 +1,32 @@ +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