Truenas SCALE 24.10 - app how to install pyload-ng

Hi all,

pleas help me install pyload-ng as app to my TrueNAS SCALE 24.10.2.

I search for some web base download maneger, but find only pyload-ng, that is not in app list.

Thx.

You can use this yaml

---
services:
  pyload-ng:
    image: lscr.io/linuxserver/pyload-ng:latest
    container_name: pyload-ng
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /path/to/pyload-ng/config:/config
      - /path/to/downloads:/downloads
    ports:
      - 8000:8000
      - 9666:9666 #optional
    restart: unless-stopped

from linuxserver/payload on dockerhub to deploy it as custom app
You have to adjust the storage paths and PUID/GUID or make sure that the User 1000 has the correct permissions on your datasets, but that should be all you have tot do.

1 Like

Worked, THX.