Files
docker/tdarr/compose.yml
2025-11-24 21:46:21 +01:00

52 lines
1.3 KiB
YAML

# Service Name: Tdarr Server and Node
# Description : Tdarr server and node combined.
# Homepage :
#version: "3.4"
services:
tdarr:
container_name: tdarr
image: ghcr.io/haveagitgat/tdarr:latest
restart: unless-stopped
network_mode: bridge
ports:
- ${WEBUIPORT}:8265 # webUI port
- ${SERVERPORT}:8266 # server port
environment:
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- UMASK_SET=002
- internalNode=true
- inContainer=true
- ffmpegVersion=7
- nodeID=${NODEID}
- serverIP=${SERVERIP}
- serverPort=${SERVERPORT}
- webUIPort=${WEBUIPORT}
- nodeName=${NODENAME}
- auth=false
- enableDockerAutoUpdater=false
volumes:
- /home/rcadmin/docker/tdarr/server:/app/server
- /home/rcadmin/docker/tdarr/config:/app/configs
- /home/rcadmin/docker/tdarr/logs:/app/logs
- cifs_mount_media:/media
#- cifs_mount_media/cache:/temp
#- /mnt/nfs/tower/video:/tower_media
#- /mnt/nfs/bunker/arch:/bunker_arch
#- /mnt/smb/redux/transcode/tdarr:/temp
# devices:
# - /dev/dri:/dev/dri
volumes:
cifs_mount_media:
driver: local
driver_opts:
type: cifs
device: //192.168.50.204/Media/Recompress
o: "username=${USERNAME},password=${PASSWORD},vers=3.0,uid=${PUID},gid=${PGID},noserverino"