From 073308f1a330af550801f85292614a08da252c15 Mon Sep 17 00:00:00 2001
From: Zhiyuan Zheng <zhzy0077@hotmail.com>
Date: Tue, 11 Oct 2022 22:55:54 +0800
Subject: [PATCH] Fix the proposed noise private_key_path

As indicated by the comment, the default /var/lib/headscale path is not writable in the container. However the sample setting is not following that like `private_key_path`
---
 docs/running-headscale-container.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/running-headscale-container.md b/docs/running-headscale-container.md
index f3626e9f..afbc1c56 100644
--- a/docs/running-headscale-container.md
+++ b/docs/running-headscale-container.md
@@ -55,7 +55,7 @@ metrics_listen_addr: 0.0.0.0:9090
 private_key_path: /etc/headscale/private.key
 # The default /var/lib/headscale path is not writable in the container
 noise:
-  private_key_path: /var/lib/headscale/noise_private.key
+  private_key_path: /etc/headscale/noise_private.key
 # The default /var/lib/headscale path is not writable  in the container
 db_path: /etc/headscale/db.sqlite
 ```