From d3dc0f438317469627576dd887899e2a55014665 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Tue, 29 Nov 2022 00:55:39 +0000 Subject: [PATCH] Workflow update --- lsio/unifi-controller/docker-compose.yaml | 4 ++-- lsio/unifi-controller/docker-run.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lsio/unifi-controller/docker-compose.yaml b/lsio/unifi-controller/docker-compose.yaml index d6bd306..b4811ae 100644 --- a/lsio/unifi-controller/docker-compose.yaml +++ b/lsio/unifi-controller/docker-compose.yaml @@ -15,9 +15,9 @@ services: - PGID=${PGID:-100} # Specify a timezone to use for example Europe/Amsterdam - TZ=${TZ:-Europe/Amsterdam} - # Optionally change the Java memory limit. Set to `default` to reset to default + # Optionally change the Java memory limit (in Megabytes). Set to `default` to reset to default - MEM_LIMIT=1024 # optional - # Optionally change the Java initial/minimum memory. Set to `default` to reset to default + # Optionally change the Java initial/minimum memory (in Megabytes). Set to `default` to reset to default - MEM_STARTUP=1024 # optional volumes: # All Unifi data stored here diff --git a/lsio/unifi-controller/docker-run.sh b/lsio/unifi-controller/docker-run.sh index d53e404..0253673 100644 --- a/lsio/unifi-controller/docker-run.sh +++ b/lsio/unifi-controller/docker-run.sh @@ -8,8 +8,8 @@ docker run -d \ -e PUID=${PUID:-1024} `# for UserID` \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ - -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` \ + -e MEM_LIMIT=1024 `# optional` `# Optionally change the Java memory limit (in Megabytes). Set to `default` to reset to default` \ + -e MEM_STARTUP=1024 `# optional` `# Optionally change the Java initial/minimum memory (in Megabytes). 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` \