From 32b64da0e6a7c59b8158eb72e7aaa594ff54e29d Mon Sep 17 00:00:00 2001 From: Pierre Dubouilh Date: Sun, 7 Jun 2020 17:42:16 +0200 Subject: [PATCH] mkdir folder before docker run --- support/readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/support/readme.md b/support/readme.md index a074c12..7620e2f 100644 --- a/support/readme.md +++ b/support/readme.md @@ -91,6 +91,7 @@ the master branch is automatically built and pushed to [dockerhub](https://hub.d ```sh # pull from dockerhub and run +% mkdir ~/LocalDirToShare % sudo docker run -v ~/LocalDirToShare:/shared -p 8001:8001 pldubouilh/gossa ``` @@ -99,6 +100,7 @@ if you prefer building the image yourself : ```sh # build gossa within a build container, needs to be ran within the sources, ../ from here, and run % docker build -t gossa -f support/build.Dockerfile . +% mkdir ~/LocalDirToShare % sudo docker run -v ~/LocalDirToShare:/shared -p 8001:8001 gossa ```