Remove tdarr
This commit is contained in:
parent
47ce08d57a
commit
7aaf307f5f
@ -1,8 +0,0 @@
|
|||||||
DOCKER_DATA=/home/joey/data/tdarr
|
|
||||||
MEDIA_DIR=/mnt/nas/media/Video
|
|
||||||
TRANSCODE_DIR=/mnt/md0/tdarr
|
|
||||||
|
|
||||||
## Generic
|
|
||||||
TZ=America/Los_Angeles
|
|
||||||
PUID=1000
|
|
||||||
PGID=1000
|
|
@ -1,75 +0,0 @@
|
|||||||
version: "3.4"
|
|
||||||
services:
|
|
||||||
tdarr:
|
|
||||||
container_name: tdarr
|
|
||||||
image: haveagitgat/tdarr:latest
|
|
||||||
networks:
|
|
||||||
web:
|
|
||||||
tdarr:
|
|
||||||
ipv4_address: 172.110.0.10
|
|
||||||
ports:
|
|
||||||
- 8265:8265 # webUI port
|
|
||||||
- 8266:8266 # server port
|
|
||||||
- 8267:8267 # node port
|
|
||||||
labels:
|
|
||||||
- traefik.http.routers.tdarr.rule=Host(`tdarr.jafner.net`)
|
|
||||||
- traefik.http.routers.tdarr.tls.certresolver=lets-encrypt
|
|
||||||
- traefik.http.services.tdarr.loadbalancer.server.port=8265
|
|
||||||
environment:
|
|
||||||
- TZ=${TZ}
|
|
||||||
- PUID=${PUID}
|
|
||||||
- PGID=${PGID}
|
|
||||||
- UMASK_SET=002
|
|
||||||
- serverIP=0.0.0.0
|
|
||||||
- serverPort=8266
|
|
||||||
- webUIPort=8265
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_DATA}/server:/app/server
|
|
||||||
- ${DOCKER_DATA}/configs:/app/configs
|
|
||||||
- ${DOCKER_DATA}/logs:/app/logs
|
|
||||||
- ${MEDIA_DIR}/Movies:/movies
|
|
||||||
- ${MEDIA_DIR}/Shows:/shows
|
|
||||||
- ${TRANSCODE_DIR}/transcode_cache:/temp
|
|
||||||
|
|
||||||
tdarr-node:
|
|
||||||
container_name: tdarr-node
|
|
||||||
image: haveagitgat/tdarr_node:latest
|
|
||||||
deploy:
|
|
||||||
resources:
|
|
||||||
reservations:
|
|
||||||
devices:
|
|
||||||
- driver: nvidia
|
|
||||||
count: all
|
|
||||||
capabilities: [gpu]
|
|
||||||
limits:
|
|
||||||
cpus: '12.00'
|
|
||||||
networks:
|
|
||||||
tdarr:
|
|
||||||
ipv4_address: 172.110.0.20
|
|
||||||
environment:
|
|
||||||
- TZ=${TZ}
|
|
||||||
- PUID=${PUID}
|
|
||||||
- PGID=${PGID}
|
|
||||||
- UMASK_SET=002
|
|
||||||
- nodeID=MainNode
|
|
||||||
- nodeIP=172.110.0.20
|
|
||||||
- nodePort=8267
|
|
||||||
- serverIP=172.110.0.10
|
|
||||||
- serverPort=8266
|
|
||||||
- NVIDIA_VISIBLE_DEVICES=all
|
|
||||||
- NVIDIA_DRIVER_CAPABILITIES=all
|
|
||||||
volumes:
|
|
||||||
- ${DOCKER_DATA}/configs:/app/configs
|
|
||||||
- ${DOCKER_DATA}/logs:/app/logs
|
|
||||||
- ${MEDIA_DIR}/Movies:/movies
|
|
||||||
- ${MEDIA_DIR}/Shows:/shows
|
|
||||||
- ${TRANSCODE_DIR}/transcode_cache:/temp
|
|
||||||
|
|
||||||
networks:
|
|
||||||
web:
|
|
||||||
external: true
|
|
||||||
tdarr:
|
|
||||||
ipam:
|
|
||||||
driver: default
|
|
||||||
config:
|
|
||||||
- subnet: "172.110.0.0/24"
|
|
Loading…
x
Reference in New Issue
Block a user