docker-bits/lsio/pyload-ng/docker-run.sh

17 lines
844 B
Bash
Raw Normal View History

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.
2023-04-26 00:53:18 +00:00
. ./.env
2022-01-25 00:38:21 +00:00
docker run -d \
--name=pyload-ng \
2022-04-02 00:45:58 +00:00
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
2023-02-26 14:51:38 +00:00
-e TZ=${TZ:-Europe/Amsterdam} `# 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
-p 8000:8000 `# Allows HTTP access to the application` \
2022-02-04 00:35:34 +00:00
-p 9666:9666 `# optional` `# Click'n'Load port.` \
2022-01-25 00:38:21 +00:00
-v ${BASEDIR:-/volume1/docker}/pyload-ng/config:/config `# pyLoad Configuration and files database` \
-v ${BASEDIR:-/volume1/docker}/pyload-ng/downloads:/downloads `# Destination of pyLoad downloads` \
--restart unless-stopped \
ghcr.io/linuxserver/pyload-ng