2022-01-25 00:38:21 +00:00
|
|
|
# [pyLoad](https://pyload.net/) is a Free and Open Source download manager
|
|
|
|
# written in Python and designed to be extremely lightweight, easily extensible
|
|
|
|
# and fully manageable via web.
|
|
|
|
|
|
|
|
---
|
|
|
|
version: "2.1"
|
|
|
|
services:
|
|
|
|
pyload-ng:
|
|
|
|
image: ghcr.io/linuxserver/pyload-ng
|
|
|
|
container_name: pyload-ng
|
|
|
|
environment:
|
|
|
|
# for UserID
|
2022-04-02 00:45:58 +00:00
|
|
|
- PUID=${PUID:-1024}
|
|
|
|
# for GroupID
|
2022-01-25 00:38:21 +00:00
|
|
|
- PGID=${PGID:-100}
|
2023-02-12 01:01:09 +00:00
|
|
|
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
|
2022-01-25 00:38:21 +00:00
|
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
|
|
volumes:
|
2024-01-26 01:18:09 +00:00
|
|
|
# Persistent config files
|
2022-01-25 00:38:21 +00:00
|
|
|
- ${BASEDIR:-/volume1/docker}/pyload-ng/config:/config
|
|
|
|
# Destination of pyLoad downloads
|
|
|
|
- ${BASEDIR:-/volume1/docker}/pyload-ng/downloads:/downloads
|
|
|
|
ports:
|
|
|
|
# Allows HTTP access to the application
|
|
|
|
- 8000:8000
|
2022-02-04 00:35:34 +00:00
|
|
|
# Click'n'Load port.
|
|
|
|
- 9666:9666 # optional
|
2022-01-25 00:38:21 +00:00
|
|
|
restart: unless-stopped
|