summaryrefslogtreecommitdiff
path: root/script/run
blob: f62cc3694bb819104d6535239aa394decb61ec27 (plain) (blame)
1
2
3
4
5
6
7
8
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