aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.toml12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml
index 046475b..d59bf4f 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -84,6 +84,18 @@ args = [
"whirlsplash/whirl"
]
+[tasks.docker-run-i]
+command = "docker"
+args = [
+ "run",
+ "-it",
+ "--name", "Whirlsplash",
+ # API Distributor Hub
+ "-p", "8000:8000", "-p", "6650:6650", "-p", "5673:5673",
+ "--env", "DISABLE_PROMPT=false",
+ "whirlsplash/whirl"
+]
+
# Build 'n' load
[tasks.bnl]
dependencies = ["docker-build", "docker-load"]