From 656a88ba53ec9d6fe5b2dc8eb2a2361b9a7a7e65 Mon Sep 17 00:00:00 2001 From: Jon Radon Date: Mon, 3 May 2021 22:38:05 -0400 Subject: [PATCH] Add missing quote to docker run documentation --- docs/installation/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation/docker.md b/docs/installation/docker.md index 776c0440..85de3aac 100644 --- a/docs/installation/docker.md +++ b/docs/installation/docker.md @@ -14,7 +14,7 @@ for every operating system on the [Docker website](https://docs.docker.com/engin - Run it: ``` - docker run -p 8888:8888 -v "${HOME}/engima-bbs/config:/enigma-bbs/config enigmabbs/enigma-bbs:latest + docker run -p 8888:8888 -v "${HOME}/engima-bbs/config:/enigma-bbs/config" enigmabbs/enigma-bbs:latest ``` :bulb: Configuration will be stored in `${HOME}/engima-bbs/config`. @@ -46,4 +46,4 @@ Customising the Docker image is easy! ``` docker build -f ./docker/Dockerfile . - ``` \ No newline at end of file + ```