Tdarr running on Zimaboard using Synology files

I would like to transcode using Tdarr, however doing this on a RS1221+ with no GPU takes forever. Wondering if anyone has used a zimaboard to have Tdarr transcode media files that reside on a Synology home ?

My thought is to install Tdarr on Zimaboard, fstab to synology share as well as a transcode folder ?

Or is there a way to just use the Zimaboard as a Tdarr node running Tdarr on Synology and point it to the Zimaboard GPU?

I have Tdarr running (server & node) on a Beelink U59 (mini) with Win 10.
Which watches a fold on my NAS (DS923+) and after transcoding moves the file to my DVR. I found it easier to setup this way, rather than setting up the server on the NAS, and then setting up a node on another unit… All I can say is that it works for me…

I end up getting this to work on the Zimaboard and it works great. I installed Portainer on CasaOS, then install tdarr on portainer.

In portainer - Stacks, then + Add stack
name is tdarr
Check Web editor

version: “3.9”
services:
tdarr:
image: Package tdarr · GitHub
container_name: Tdarr
hostname: tdarr
security_opt:
- no-new-privileges:true
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:8265/ || exit 1
ports:
- 8265:8265
- 8266:8266
environment:
- TZ=America/Los_Angeles
- PUID=1000
- PGID=1000
- serverIP=tdarr
- serverPort=8266
- webUIPort=8265
- internalNode=true
- nodeID=InternalNode
volumes:
- /DATA/AppData/tdarr/server:/app/server
- /DATA/AppData/tdarr/configs:/app/configs
- /DATA/AppData/tdarr/logs:/app/logs
- /mnt/plexmedia:/media {this would be where your media is saved}
- /mnt/plexmedia/transcode:/temp {this is where you want to transcode}
restart: always
devices:
- /dev/dri:/dev/dri

In Tdarr under Libraries remove CPU&FFMPEG, go to community filter and add in FFMPEG VAAPI HEVC Transcode

I’m glad you got it to work…
I had an issue with Stacks, and ended up using Flow.