updates docs

This commit is contained in:
Johan Siebens
2025-04-28 11:48:45 +02:00
parent a0e1fcb4aa
commit 776e3de7d8
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ The ionscale CLI is the primary tool for managing your ionscale instance. It all
```bash
# Download the CLI (adjust the URL for your system architecture)
curl -L -o ionscale https://github.com/jsiebens/ionscale/releases/download/v0.16.0/ionscale_linux_amd64
curl -L -o ionscale https://github.com/jsiebens/ionscale/releases/download/v/ionscale_linux_amd64
# Make it executable
chmod +x ionscale
+2 -2
View File
@@ -47,7 +47,7 @@ First, set up environment variables for the configuration:
```bash
export IONSCALE_ACME_EMAIL="your-email@example.com" # Used for Let's Encrypt notifications
export IONSCALE_DOMAIN="ionscale.example.com" # Your ionscale domain
export IONSCALE_SYSTEM_ADMIN_KEY=$(docker run --rm ghcr.io/jsiebens/ionscale:0.16.0 genkey -n)
export IONSCALE_SYSTEM_ADMIN_KEY=$(docker run --rm ghcr.io/jsiebens/ionscale: genkey -n)
```
!!! important "System admin key"
@@ -90,7 +90,7 @@ docker run -d \
-v $(pwd)/data:/data \
-p 443:443 \
-p 3478:3478/udp \
ghcr.io/jsiebens/ionscale:0.16.0 server --config /etc/ionscale/config.yaml
ghcr.io/jsiebens/ionscale: server --config /etc/ionscale/config.yaml
```
This command:
+1 -1
View File
@@ -56,7 +56,7 @@ Install the ionscale binary on your system:
```bash
# Download the latest version (adjust for your CPU architecture)
sudo curl -o "/usr/local/bin/ionscale" \
-sfL "https://github.com/jsiebens/ionscale/releases/download/v0.16.0/ionscale_linux_amd64"
-sfL "https://github.com/jsiebens/ionscale/releases/download/v/ionscale_linux_amd64"
# Make it executable
sudo chmod +x "/usr/local/bin/ionscale"