26 lines
826 B
YAML
26 lines
826 B
YAML
services:
|
|
tunarr:
|
|
image: chrisbenincasa/tunarr:latest-arm64
|
|
container_name: tunarr
|
|
ports:
|
|
- ${TUNARR_SERVER_PORT:-8043}:8000
|
|
- ${TUNARR_SERVER_PORT:-8043}:8000
|
|
environment:
|
|
- LOG_LEVEL=${TUNARR_LOG_LEVEL:-INFO}
|
|
- TZ=America/New_York
|
|
# Pass all render devices to container
|
|
# devices:
|
|
# - /dev/dri:/dev/dri
|
|
volumes:
|
|
# Choose a path on your host to map to /config/tunarr. This ensures
|
|
# that restarting the container will not delete your settings or DB.
|
|
- $HOME/.server/tunarr:/config/tunarr
|
|
restart: "unless-stopped"
|
|
networks:
|
|
- portainer_default
|
|
# Optional - alternative address used for autodiscovery
|
|
#environment:
|
|
# - JELLYFIN_PublishedServerUrl=http://example.com
|
|
networks:
|
|
portainer_default:
|
|
external: true
|