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