diff --git a/lsio/pyload-ng/docker-compose.yaml b/lsio/pyload-ng/docker-compose.yaml index 772f147..cea8696 100644 --- a/lsio/pyload-ng/docker-compose.yaml +++ b/lsio/pyload-ng/docker-compose.yaml @@ -23,4 +23,6 @@ services: ports: # Allows HTTP access to the application - 8000:8000 + # Click'n'Load port. + - 9666:9666 # optional restart: unless-stopped diff --git a/lsio/pyload-ng/docker-run.sh b/lsio/pyload-ng/docker-run.sh index f5fd2a8..03ec983 100644 --- a/lsio/pyload-ng/docker-run.sh +++ b/lsio/pyload-ng/docker-run.sh @@ -9,6 +9,7 @@ docker run -d \ -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` \ + -p 9666:9666 `# optional` `# Click'n'Load port.` \ -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 \