summaryrefslogtreecommitdiffstats
path: root/docker/run-vespa.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/run-vespa.sh')
-rwxr-xr-xdocker/run-vespa.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/docker/run-vespa.sh b/docker/run-vespa.sh
deleted file mode 100755
index e4e963e5f4b..00000000000
--- a/docker/run-vespa.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-set -e
-
-if [ $# -ne 1 ]; then
- echo "Usage: $0 <vespa version>"
- exit 1
-fi
-
-DIR=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
-cd $DIR
-
-VESPA_VERSION=$1
-DOCKER_IMAGE=vesparun
-
-if [ "$(uname)" != "Darwin" ]; then
- 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/run-vespa-internal.sh "$DOCKER_IMAGE":"$VESPA_VERSION"
-fi