diff --git a/mkdocs/docs/getting-started/docker.md b/mkdocs/docs/getting-started/docker.md index 57360e9..d6113f4 100644 --- a/mkdocs/docs/getting-started/docker.md +++ b/mkdocs/docs/getting-started/docker.md @@ -4,7 +4,7 @@ You can install and run __ionscale__ using the Docker images published on [GitHu ## Requirements -- A Linux machine with port 80 and 443 open to ingress traffic. +- A Linux machine with port 443 and 3478 open to ingress traffic. - Docker installed. See the [official installation documentation](https://docs.docker.com/install/) - A registered domain name. @@ -33,15 +33,15 @@ Generate a configuration file for __ionscale__ with the following commands: ``` bash export IONSCALE_ACME_EMAIL= -export IONSCALE_ADDR=https://ionscale.example.com -export IONSCALE_SYSTEM_ADMIN_KEY=$(docker run ghcr.io/jsiebens/ionscale:0.13.0 genkey -n) +export IONSCALE_DOMAIN=ionscale.example.com +export IONSCALE_SYSTEM_ADMIN_KEY=$(docker run ghcr.io/jsiebens/ionscale:0.15.0 genkey -n) ``` ``` bash tee ./config.yaml >/dev/null < -export IONSCALE_ADDR=https://ionscale.example.com +export IONSCALE_DOMAIN=ionscale.example.com ``` ``` bash sudo tee /etc/ionscale/config.yaml >/dev/null <