From e91f72fe4c9cf747605cbbd64f89b5016be35c00 Mon Sep 17 00:00:00 2001 From: lion24 Date: Sat, 20 Nov 2021 23:31:49 +0100 Subject: [PATCH] Running.md: fix missing backslash (\) * This would cause otherwise the command to abort after the first statement of the docker command ;) --- docs/Running.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Running.md b/docs/Running.md index 867c5ed2..ac9d2282 100644 --- a/docs/Running.md +++ b/docs/Running.md @@ -26,7 +26,7 @@ ```shell docker run --name headscale \ - -e POSTGRES_DB=headscale + -e POSTGRES_DB=headscale \ -e POSTGRES_USER=foo \ -e POSTGRES_PASSWORD=bar \ -p 5432:5432 \