mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-05 00:00:32 +00:00
Workflow update
This commit is contained in:
parent
184818f2e9
commit
0e036924e2
26
lsio/pyload-ng/docker-compose.yaml
Normal file
26
lsio/pyload-ng/docker-compose.yaml
Normal file
@ -0,0 +1,26 @@
|
||||
# [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 GroupID
|
||||
- PUID=${PUID:-1024}
|
||||
# for UserID
|
||||
- PGID=${PGID:-100}
|
||||
# Specify a timezone to use for example Europe/Amsterdam
|
||||
- TZ=${TZ:-Europe/Amsterdam}
|
||||
volumes:
|
||||
# pyLoad Configuration and files database
|
||||
- ${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
|
||||
restart: unless-stopped
|
15
lsio/pyload-ng/docker-run.sh
Normal file
15
lsio/pyload-ng/docker-run.sh
Normal file
@ -0,0 +1,15 @@
|
||||
# [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.
|
||||
|
||||
source ./.env
|
||||
docker run -d \
|
||||
--name=pyload-ng \
|
||||
-e PUID=${PUID:-1024} `# for GroupID` \
|
||||
-e PGID=${PGID:-100} `# for UserID` \
|
||||
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
||||
-p 8000:8000 `# Allows HTTP access to the application` \
|
||||
-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
|
4
lsio/pyload-ng/run-once.sh
Normal file
4
lsio/pyload-ng/run-once.sh
Normal file
@ -0,0 +1,4 @@
|
||||
ln -s ../docker-env.cfg ./.env
|
||||
. ./.env
|
||||
mkdir -p ${BASEDIR:-/volume1/docker}/pyload-ng/config
|
||||
mkdir -p ${BASEDIR:-/volume1/docker}/pyload-ng/downloads
|
Loading…
Reference in New Issue
Block a user