Small doc change to add running custom container
This commit is contained in:
parent
1d00482b02
commit
80dcc14a50
|
@ -71,5 +71,9 @@ Customising the Docker image is easy!
|
||||||
1. Clone the ENiGMA-BBS source.
|
1. Clone the ENiGMA-BBS source.
|
||||||
2. Build the image
|
2. Build the image
|
||||||
```bash
|
```bash
|
||||||
docker build -f ./docker/Dockerfile .
|
docker build -t enigmabbs -f ./docker/Dockerfile .
|
||||||
|
```
|
||||||
|
3. Run the image
|
||||||
|
```bash
|
||||||
|
docker run -it -p 8888:8888 --name "ENiGMABBS" -v "$(pwd)/config:/enigma-bbs/config" -v "$(pwd)/db:/enigma-bbs/db" -v "$(pwd)/logs:/enigma-bbs/logs" -v "$(pwd)/filebase:/enigma-bbs/filebase" -v "$(pwd)/art:/enigma-bbs/art" -v "$(pwd)/mods:/enigma-bbs/mods" -v "$(pwd)/mail:/mail" enigmabbs
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue