From 58a2c915ec2bef81f84ef8d64e52cf296e977958 Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Tue, 17 Feb 2026 16:56:14 +0100 Subject: [PATCH] Add tunarr compose file --- tunarr/compose.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tunarr/compose.yaml diff --git a/tunarr/compose.yaml b/tunarr/compose.yaml new file mode 100644 index 0000000..febf59a --- /dev/null +++ b/tunarr/compose.yaml @@ -0,0 +1,30 @@ +services: + tunarr: + image: ghcr.io/chrisbenincasa/tunarr:1.1.11 + container_name: tunarr + volumes: + # Config + - $APPDATA/tunarr:/config/tunarr + # Media + - $MEDIADIR/tv:/tv:ro + - $MEDIADIR/movies:/movies:ro + environment: + LOG_LEVEL: ${TUNARR_LOG_LEVEL:-INFO} + TZ: $TZ + ports: + - 8088:8000 + devices: + - /dev/dri:/dev/dri + # labels: + # - "traefik.enable=true" + # - "traefik.http.routers.tunarr.rule=Host(`tunarr.${LOCAL_DOMAIN}`)" + # - "traefik.http.routers.tunarr.entrypoints=https" + # - "traefik.http.routers.tunarr.tls=true" + # - "traefik.http.services.tunarr.loadbalancer.server.port=8000" + # networks: + # - proxy + restart: unless-stopped + +# networks: +# proxy: +# external: true \ No newline at end of file