Merge pull request #354 from JonMR/patch-1

Add missing quote to docker run documentation
This commit is contained in:
Bryan Ashby 2021-05-05 20:57:28 -06:00 committed by GitHub
commit 9a652e7098
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 .
```
```