aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-06-18 18:45:49 +0000
committerGitHub <[email protected]>2021-06-18 18:45:49 +0000
commit1c5caba84451889b6484c6b1166122319de42b47 (patch)
tree73e7a70cf6e6434066af49566ea844870bc8da6c
parentstyle(compose): not much (diff)
downloadwhirl-1c5caba84451889b6484c6b1166122319de42b47.tar.xz
whirl-1c5caba84451889b6484c6b1166122319de42b47.zip
fix(make): docker run commands
-rw-r--r--Makefile.toml6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.toml b/Makefile.toml
index e133cbe..6931b56 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -93,8 +93,9 @@ command = "docker"
args = [
"run",
"--name", "Whirlsplash",
- # API Distributor Hub
+ # API Distributor Hub
"-p", "8000:80", "-p", "6650:6650", "-p", "5673:5673",
+ "-v", "/var/lib/whirl:/.whirl",
"whirlsplash/whirl"
]
@@ -106,8 +107,9 @@ args = [
"run",
"-it",
"--name", "Whirlsplash",
- # API Distributor Hub
+ # API Distributor Hub
"-p", "8000:80", "-p", "6650:6650", "-p", "5673:5673",
+ "-v", "/var/lib/whirl:/.whirl",
"--env", "DISABLE_PROMPT=false",
"whirlsplash/whirl"
]