30 lines
786 B
YAML
30 lines
786 B
YAML
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 |