WIP Add tdarr

This commit is contained in:
RealStickman 2022-11-27 20:52:27 +01:00
parent 76304dc561
commit 471265f0a1

View File

@ -0,0 +1,36 @@
---
title: Tdarr
visible: false
---
[toc]
## TODO
https://docs.tdarr.io/docs/installation/docker/run-compose
https://github.com/HaveAGitGat/Tdarr
https://docs.tdarr.io/docs/plugins/basics
Ports:
```
8265: Port for webUI
8266: Port to connect Nodes
```
Both ports are made inaccessible from the outside in order to avoid just any random person accessing the service.
```
# podman run -it --name tdarr \
-p 127.0.0.1:8265:8265 \
-p 127.0.0.1:8266:8266 \
-v /mnt/tdarr/server/:/app/server \
-v /mnt/tdarr/configs/:/app/configs \
-v /mnt/tdarr/logs/:/app/logs \
-v /mnt/tdarr/tmp/:/temp \
-v /mnt/Media/:/media \
-e "internalNode=true" \
-e "nodeID=localnode" \
--log-opt max-size=10m \
--log-opt max-file=5 \
-d gitea.exu.li/realstickman/tdarr-ffmpeg5.1:latest
```