diff --git a/docs/Advanced-Integration.md b/docs/Advanced-Integration.md index 64e49e3..3a7cfe3 100644 --- a/docs/Advanced-Integration.md +++ b/docs/Advanced-Integration.md @@ -61,7 +61,7 @@ ACLs when the file is changed. ## Deployment Requirements: -- Headscale 0.23 beta-2 or later +- Headscale 0.23 or newer - Headscale and Headplane need a Reverse Proxy (NGINX, Traefik, Caddy, etc) Currently there are 3 integration providers that can do this for you: diff --git a/docs/Basic-Integration.md b/docs/Basic-Integration.md index d28a043..de0d542 100644 --- a/docs/Basic-Integration.md +++ b/docs/Basic-Integration.md @@ -16,7 +16,7 @@ Headplane in a production environment. ## Deployment Requirements: -- Headscale 0.23 beta-2 or later +- Headscale 0.23 or newer - Headscale and Headplane need a Reverse Proxy (NGINX, Traefik, Caddy, etc) Docker heavily simplifies the deployment process, but this process can be @@ -29,7 +29,7 @@ Here is a simple Docker Compose deployment: services: headplane: container_name: headplane - image: ghcr.io/tale/headplane:latest + image: ghcr.io/tale/headplane:0.3.0 restart: unless-stopped ports: - '3000:3000' diff --git a/docs/integration/Docker.md b/docs/integration/Docker.md index c2e1721..a5b345f 100644 --- a/docs/integration/Docker.md +++ b/docs/integration/Docker.md @@ -37,7 +37,7 @@ that you'll NEED to setup a reverse proxy and this is incomplete: ```yaml services: headscale: - image: 'headscale/headscale:0.23.0-beta2' + image: 'headscale/headscale:0.23.0' container_name: 'headscale' restart: 'unless-stopped' command: 'serve' @@ -50,7 +50,7 @@ services: TZ: 'America/New_York' headplane: container_name: headplane - image: ghcr.io/tale/headplane:latest + image: ghcr.io/tale/headplane:0.3.0 restart: unless-stopped volumes: - './data:/var/lib/headscale' diff --git a/docs/integration/Kubernetes.md b/docs/integration/Kubernetes.md index 6cea662..d4bd876 100644 --- a/docs/integration/Kubernetes.md +++ b/docs/integration/Kubernetes.md @@ -88,7 +88,7 @@ spec: serviceAccountName: default containers: - name: headplane - image: ghcr.io/tale/headplane:latest + image: ghcr.io/tale/headplane:0.3.0 env: - name: COOKIE_SECRET value: 'abcdefghijklmnopqrstuvwxyz' @@ -107,7 +107,7 @@ spec: mountPath: /etc/headscale - name: headscale - image: headscale/headscale:0.23.0-beta2 + image: headscale/headscale:0.23.0 command: ['serve'] env: - name: TZ