From 2157bb584f4172f71f5911843d727f6a4685042b Mon Sep 17 00:00:00 2001 From: David Abutbul Date: Thu, 3 Feb 2022 15:51:21 +0200 Subject: [PATCH 1/2] cleaning up space in command --- docs/installation/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation/docker.md b/docs/installation/docker.md index 0acd5d85..505a0c98 100644 --- a/docs/installation/docker.md +++ b/docs/installation/docker.md @@ -11,7 +11,7 @@ prepare a folder where you are going to save your bbs files. you can perform this step from anywhere - but make sure to consistently run it from the same place to retain your config inside the docker guest ``` docker run -it -p 8888:8888 \ ---name " ENiGMABBS" \ +--name "ENiGMABBS" \ -v "$(pwd)/config:/enigma-bbs/config" \ -v "$(pwd)/db:/enigma-bbs/db" \ -v "$(pwd)/logs:/enigma-bbs/logs" \ From be140e907661f19c95bcb4935fd7c88570114f5c Mon Sep 17 00:00:00 2001 From: David Abutbul Date: Thu, 3 Feb 2022 15:55:33 +0200 Subject: [PATCH 2/2] and name --- 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 505a0c98..1fa1de49 100644 --- a/docs/installation/docker.md +++ b/docs/installation/docker.md @@ -19,7 +19,7 @@ docker run -it -p 8888:8888 \ -v "$(pwd)/art:/enigma-bbs/art" \ -v "$(pwd)/mods:/enigma-bbs/mods" \ -v "$(pwd)/mail:/mail" \ -enigmabbs/enigmabbs:latest +enigmabbs/enigma-bbs:latest ``` - Run it: \ you can use the same command as above, just daemonize and drop interactiveness (we needed it for config but most of the time docker will run in the background) @@ -33,7 +33,7 @@ docker run -d -p 8888:8888 \ -v "$(pwd)/art:/enigma-bbs/art" \ -v "$(pwd)/mods:/enigma-bbs/mods" \ -v "$(pwd)/mail:/mail" \ -enigmabbs/enigmabbs:latest +enigmabbs/enigma-bbs:latest ```` - Restarting and Making changes\ if you make any changes to your host config folder they will persist, and you can just restart ENiGMABBS container to load any changes you've made.