From 69cddbd56ee183367125565e741ab9d0037edf8b Mon Sep 17 00:00:00 2001 From: TOTHTOMI Date: Sat, 14 Sep 2024 14:22:21 +0200 Subject: [PATCH] GH-2223 Added missing line breaks to the run command in the Docker guide (Fix #2222) Added line break char ('\\') to docker run command. Copy pasting the command will now work instead of failing. --- reposilite-site/data/guides/installation/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reposilite-site/data/guides/installation/docker.md b/reposilite-site/data/guides/installation/docker.md index 7c9471707..56b7b20d4 100644 --- a/reposilite-site/data/guides/installation/docker.md +++ b/reposilite-site/data/guides/installation/docker.md @@ -75,8 +75,8 @@ To launch Reposilite with a custom configuration, we have to mount proper file: $ docker run -it \ --mount type=bind,source=/etc/reposilite/configuration.cdn,target=/app/configuration.cdn \ -e REPOSILITE_OPTS='--local-configuration=/app/configuration.cdn' \ - -v reposilite-data:/app/data - -p 80:8080 + -v reposilite-data:/app/data \ + -p 80:8080 \ dzikoysk/reposilite ```