diff --git a/lsio/qbittorrent/docker-compose.yaml b/lsio/qbittorrent/docker-compose.yaml index bf12daf..91a43e5 100644 --- a/lsio/qbittorrent/docker-compose.yaml +++ b/lsio/qbittorrent/docker-compose.yaml @@ -23,10 +23,10 @@ services: # Location of downloads on disk. - ${BASEDIR:-/volume1/docker}/qbittorrent/downloads:/downloads ports: + # WebUI + - 8080:8080 # tcp connection port - 6881:6881 # udp connection port - 6881:6881/udp - # http gui - - 8080:8080 restart: unless-stopped diff --git a/lsio/qbittorrent/docker-run.sh b/lsio/qbittorrent/docker-run.sh index a28dbb7..e6308e4 100644 --- a/lsio/qbittorrent/docker-run.sh +++ b/lsio/qbittorrent/docker-run.sh @@ -9,9 +9,9 @@ docker run -d \ -e PGID=${PGID:-100} `# for UserID` \ -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ -e WEBUI_PORT=8080 `# for changing the port of the webui, see below for explanation` \ + -p 8080:8080 `# WebUI` \ -p 6881:6881 `# tcp connection port` \ -p 6881:6881/udp `# udp connection port` \ - -p 8080:8080 `# http gui` \ -v ${BASEDIR:-/volume1/docker}/qbittorrent/config:/config `# Contains all relevant configuration files.` \ -v ${BASEDIR:-/volume1/docker}/qbittorrent/downloads:/downloads `# Location of downloads on disk.` \ --restart unless-stopped \ diff --git a/lsio/unifi-controller/docker-compose.yaml b/lsio/unifi-controller/docker-compose.yaml index e653fcd..8ae544b 100644 --- a/lsio/unifi-controller/docker-compose.yaml +++ b/lsio/unifi-controller/docker-compose.yaml @@ -21,14 +21,14 @@ services: # All Unifi data stored here - ${BASEDIR:-/volume1/docker}/unifi-controller/config:/config ports: + # Unifi web admin port + - 8443:8443 # Unifi STUN port - 3478:3478/udp # Required for AP discovery - 10001:10001/udp # Required for device communication - 8080:8080 - # Unifi web admin port - - 8443:8443 # Required for `Make controller discoverable on L2 network` option - 1900:1900/udp # optional # Unifi guest portal HTTPS redirect port diff --git a/lsio/unifi-controller/docker-run.sh b/lsio/unifi-controller/docker-run.sh index 9972c55..e61283c 100644 --- a/lsio/unifi-controller/docker-run.sh +++ b/lsio/unifi-controller/docker-run.sh @@ -9,10 +9,10 @@ docker run -d \ -e PGID=${PGID:-100} `# for UserID` \ -e MEM_LIMIT=1024 `# optional` `# Optionally change the Java memory limit. Set to `default` to reset to default` \ -e MEM_STARTUP=1024 `# optional` `# Optionally change the Java initial/minimum memory. Set to `default` to reset to default` \ + -p 8443:8443 `# Unifi web admin port` \ -p 3478:3478/udp `# Unifi STUN port` \ -p 10001:10001/udp `# Required for AP discovery` \ -p 8080:8080 `# Required for device communication` \ - -p 8443:8443 `# Unifi web admin port` \ -p 1900:1900/udp `# optional` `# Required for `Make controller discoverable on L2 network` option` \ -p 8843:8843 `# optional` `# Unifi guest portal HTTPS redirect port` \ -p 8880:8880 `# optional` `# Unifi guest portal HTTP redirect port` \