Add tunarr compose file
This commit is contained in:
parent
2cc8135a23
commit
58a2c915ec
30
tunarr/compose.yaml
Normal file
30
tunarr/compose.yaml
Normal file
|
|
@ -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
|
||||||
Loading…
Reference in a new issue