Update tdarr wiki page and make it visible

This commit is contained in:
RealStickman 2022-12-27 20:41:02 +01:00
parent 9aef4110fd
commit e72b2020ce

View File

@ -1,28 +1,23 @@
---
title: Tdarr
visible: false
visible: true
---
[toc]
## TODO
https://docs.tdarr.io/docs/installation/docker/run-compose
https://github.com/HaveAGitGat/Tdarr
Ports:
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.
## Server with integrated Node
```
# podman run -it --name tdarr \
-p 127.0.0.1:8265:8265 \
-p 127.0.0.1:8266:8266 \
-p 8265:8265 \
-p 8266:8266 \
-v /mnt/tdarr/server/:/app/server \
-v /mnt/tdarr/configs/:/app/configs \
-v /mnt/tdarr/logs/:/app/logs \
@ -34,3 +29,31 @@ Both ports are made inaccessible from the outside in order to avoid just any ran
--log-opt max-file=5 \
-d gitea.exu.li/realstickman/tdarr-ffmpeg5.1:latest
```
## Server only
```
# podman run -it --name tdarr-server \
-p 8265:8265 \
-p 8266:8266 \
-v /mnt/tdarr/server/:/app/server \
-v /mnt/tdarr/configs/:/app/configs \
-v /mnt/tdarr/logs/:/app/logs \
-v /mnt/tdarrshare/cache:/cache \
-v /mnt/tdarrshare/media:/media \
-d gitea.exu.li/realstickman/tdarr-server-ffmpeg5.1:latest
```
## Node
```
# podman run -it --name tdarr-node \
-e nodeID=<NAME> \
-e serverIP=<IP> \
-e serverPort=8266 \
-v /mnt/tdarr/configs/:/app/configs \
-v /mnt/tdarr/logs/:/app/logs \
-v /mnt/tdarrshare/cache:/cache \
-v /mnt/tdarrshare/media:/media \
-d gitea.exu.li/realstickman/tdarr-node-ffmpeg5.1:latest
```