From 742627e5877e61330c88b98ae2b4cf59eb8722f6 Mon Sep 17 00:00:00 2001 From: DmitryBoiadji Date: Sun, 23 Feb 2025 01:28:56 +0200 Subject: [PATCH] fixing unknown command headscale MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit got an error running docker compose: [+] Running 2/2 ⠿ Container headscale-ui Created 0.0s ⠿ Container headscale Recreated 0.8s Attaching to headscale, headscale-ui headscale | Error: unknown command "headscale" for "headscale" headscale | Run 'headscale --help' for usage. headscale | unknown command "headscale" for "headscale" headscale-ui | Starting Caddy fixed by removing unnecessary headscale prefix before serve command --- documentation/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/configuration.md b/documentation/configuration.md index 017aa3d..d32f6d4 100644 --- a/documentation/configuration.md +++ b/documentation/configuration.md @@ -13,7 +13,7 @@ services: pull_policy: always container_name: headscale restart: unless-stopped - command: headscale serve + command: serve volumes: - ./headscale/config:/etc/headscale - ./headscale/data:/var/lib/headscale