From 48893576151de68cffe58d5c30c571fa565446bf Mon Sep 17 00:00:00 2001 From: David Abutbul Date: Wed, 26 Jan 2022 01:39:07 +0200 Subject: [PATCH] no need to --rm unless there's issues really. (or upgrade ---- tbd) --- 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 13cf0985..f2255efb 100644 --- a/docs/installation/docker.md +++ b/docs/installation/docker.md @@ -10,7 +10,7 @@ prepare a folder where you are going to save your bbs files. - Generate some config for your BBS: \ 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 --rm -p 8888:8888 \ +docker run -it -p 8888:8888 \ --name "EnigmaBBS" \ -v "$(pwd)/config:/enigma-bbs/config" \ -v "$(pwd)/db:/enigma-bbs/db" \ @@ -24,7 +24,7 @@ enigmabbs/enigmabbs: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) ```` -docker run -d --rm -p 8888:8888 \ +docker run -d -p 8888:8888 \ --name "EnigmaBBS" \ -v "$(pwd)/config:/enigma-bbs/config" \ -v "$(pwd)/db:/enigma-bbs/db" \