summaryrefslogtreecommitdiffstats
path: root/docker/run-vespa.sh
diff options
context:
space:
mode:
authorgjoranv <gv@yahoo-inc.com>2017-06-27 14:29:23 +0200
committergjoranv <gv@yahoo-inc.com>2017-06-27 14:29:23 +0200
commit295b1b55af1179babd5a4fafedc8a494ec23b671 (patch)
tree5db0da58424536de8973ca8d9cde580354e5acb2 /docker/run-vespa.sh
parent37e072c994b3788d1fb3df92b98064508b548e20 (diff)
Move Dockerfile.run and run-vespa-internal.sh to new run/ folder.
Diffstat (limited to 'docker/run-vespa.sh')
-rwxr-xr-xdocker/run-vespa.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/run-vespa.sh b/docker/run-vespa.sh
index 6321f279bdd..e4e963e5f4b 100755
--- a/docker/run-vespa.sh
+++ b/docker/run-vespa.sh
@@ -14,8 +14,8 @@ VESPA_VERSION=$1
DOCKER_IMAGE=vesparun
if [ "$(uname)" != "Darwin" ]; then
- docker run -d -v $(pwd)/..:/vespa --net=host --privileged --entrypoint /vespa/docker/run-vespa-internal.sh "$DOCKER_IMAGE":"$VESPA_VERSION"
+ docker run -d -v $(pwd)/..:/vespa --net=host --privileged --entrypoint /vespa/docker/run/run-vespa-internal.sh "$DOCKER_IMAGE":"$VESPA_VERSION"
else
# On OS X, net=host does not work. Need to explicitly expose ports from localhost into container.
- docker run -d -p 8080:8080 -p 19071:19071 -v $(pwd)/..:/vespa --privileged --entrypoint /vespa/docker/run-vespa-internal.sh "$DOCKER_IMAGE":"$VESPA_VERSION"
+ docker run -d -p 8080:8080 -p 19071:19071 -v $(pwd)/..:/vespa --privileged --entrypoint /vespa/docker/run/run-vespa-internal.sh "$DOCKER_IMAGE":"$VESPA_VERSION"
fi