summaryrefslogtreecommitdiff
path: root/script/run
diff options
context:
space:
mode:
Diffstat (limited to 'script/run')
-rwxr-xr-xscript/run9
1 files changed, 9 insertions, 0 deletions
diff --git a/script/run b/script/run
new file mode 100755
index 0000000..f62cc36
--- /dev/null
+++ b/script/run
@@ -0,0 +1,9 @@
+#!/bin/bash -xe
+
+source "$(dirname "${BASH_SOURCE[0]}")/common.sh"
+
+if [[ "$#" -gt 0 ]] ; then
+ $DOCKER_COMPOSE run --rm $(power_dnsex_env) web "$@"
+else
+ $DOCKER_COMPOSE run --service-ports --rm $(power_dnsex_env) web iex -S mix do hex.info
+fi