mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
add 23 requested stacks from container-requests list
Tdarr, Grocy, Dashy, Traefik, Fider, Twenty CRM, Outline, Chatwoot, ComfyUI, Picard, VoidAuth, Tinyauth, Tugtainer, Sencho, Authelia, Mail Archiver, ITFlow, Notifuse, Maybe Finance, DumbBudget, Silverpeas, Portus, Obsidian — all as _dev stacks following repo conventions. Harbor and Exportify moved to 'Apps That Will Not be in the Repo' (installer-generated compose / no published image). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
# Tdarr
|
||||
|
||||
## Overview
|
||||
|
||||
Distributed media transcoding and library automation (part of the *rr media stack).
|
||||
|
||||
## Project Details
|
||||
|
||||
- **Project Repository:** [GitHub](https://github.com/HaveAGitGat/Tdarr)
|
||||
- **Container Image:** [ghcr.io/haveagitgat/tdarr](https://github.com/HaveAGitGat/Tdarr/pkgs/container/tdarr)
|
||||
- **Documentation:** [Docs](https://docs.tdarr.io/)
|
||||
- **Reverse Proxy Port:** `8265`
|
||||
|
||||
## Getting Started
|
||||
|
||||
1. Start the container: `docker compose up -d`
|
||||
2. Open http://localhost:8265 in your browser
|
||||
3. Follow the initial setup wizard to configure the application
|
||||
|
||||
## Environment Variable Notes
|
||||
|
||||
TDARR_MEDIA – host path to your media library
|
||||
TDARR_SERVER_PORT – internal server port used by nodes (8266)
|
||||
TDARR_NODE_NAME – name of the built-in internal node
|
||||
|
||||
## Volume Notes
|
||||
|
||||
/app/server – Tdarr server data
|
||||
/app/configs – configuration
|
||||
/app/logs – logs
|
||||
/temp – transcode cache (use fast storage)
|
||||
/media – your media library
|
||||
|
||||
## Network Notes
|
||||
|
||||
Requires proxy network
|
||||
|
||||
## Docker Run
|
||||
|
||||
```bash
|
||||
docker run -d \
|
||||
--name tdarr \
|
||||
-p 8265:8265 -p 8266:8266 \
|
||||
-e TZ=America/Vancouver \
|
||||
-e serverIP=0.0.0.0 -e serverPort=8266 -e webUIPort=8265 \
|
||||
-e internalNode=true -e inContainer=true \
|
||||
-v /data/tdarr/server:/app/server \
|
||||
-v /data/tdarr/configs:/app/configs \
|
||||
-v /data/media:/media \
|
||||
ghcr.io/haveagitgat/tdarr:latest
|
||||
```
|
||||
|
||||
## Additional Notes / Gotchas
|
||||
|
||||
For hardware transcoding pass through your GPU (e.g. `--gpus all` or `/dev/dri`); not included in this compose file.
|
||||
Extra transcode nodes can join by pointing at port 8266.
|
||||
|
||||
## Dockhand Stack, Deploy from Git
|
||||
|
||||
Cookbooks Repository
|
||||
stackname: tdarr_dev
|
||||
Compose file path: tdarr_dev/compose.yaml
|
||||
Additional env file (optional): tdarr_dev/sample.env
|
||||
|
||||
Then "Load" tdarr_dev/sample.env into the Environmental variables in dockhand
|
||||
|
||||
Create the Stack
|
||||
@@ -0,0 +1,27 @@
|
||||
services:
|
||||
tdarr:
|
||||
image: ${TDARR_IMAGE:-ghcr.io/haveagitgat/tdarr:latest}
|
||||
restart: ${TDARR_RESTART:-unless-stopped}
|
||||
volumes:
|
||||
- ${VOL_PATH:-/data}/tdarr/server:/app/server
|
||||
- ${VOL_PATH:-/data}/tdarr/configs:/app/configs
|
||||
- ${VOL_PATH:-/data}/tdarr/logs:/app/logs
|
||||
- ${VOL_PATH:-/data}/tdarr/cache:/temp
|
||||
- ${TDARR_MEDIA:-/data/media}:/media
|
||||
environment:
|
||||
- TZ=${TZ:-America/Vancouver}
|
||||
- serverIP=0.0.0.0
|
||||
- serverPort=${TDARR_SERVER_PORT:-8266}
|
||||
- webUIPort=${TDARR_PORT:-8265}
|
||||
- internalNode=true
|
||||
- inContainer=true
|
||||
- nodeName=${TDARR_NODE_NAME:-InternalNode}
|
||||
ports:
|
||||
- ${TDARR_PORT:-8265}:8265
|
||||
- ${TDARR_SERVER_PORT:-8266}:8266
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
@@ -0,0 +1,9 @@
|
||||
# Tdarr
|
||||
VOL_PATH=/data
|
||||
TZ=America/Vancouver
|
||||
TDARR_IMAGE=ghcr.io/haveagitgat/tdarr:latest
|
||||
TDARR_RESTART=unless-stopped
|
||||
TDARR_PORT=8265
|
||||
TDARR_SERVER_PORT=8266
|
||||
TDARR_NODE_NAME=InternalNode
|
||||
TDARR_MEDIA=/data/media
|
||||
Reference in New Issue
Block a user