diff --git a/pages/02.linux/tdarr/default.en.md b/pages/02.linux/tdarr/default.en.md new file mode 100644 index 0000000..8efcb5b --- /dev/null +++ b/pages/02.linux/tdarr/default.en.md @@ -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 +```