blob: 78b9035a75b3087316cf977c528e3c5f0a691278 [file] [log] [blame]
#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
IMAGE=${1:-reefrt/hdi3.2}
echo "Using $IMAGE with $REEF_HOME"
if [[ $IMAGE == *"mesos"* ]]
then
PRIVILEGED='--privileged=true'
fi
LINK=""
for i in {1..3}
do
HOST=hdn-001-0$i
LINK="$LINK --link=$HOST:$HOST"
docker run $PRIVILEGED --name=$HOST -h $HOST -p 1001$i:22 -d $IMAGE /root/start.sh
done
HOST=hnn-001-01
PORT="-p 5050:5050 -p 8088:8088 -p 10000:10000 -p 10010:22 -p 26002:26002 -p 26080:26080 -p 50070:50070"
docker run $PRIVILEGED --name=$HOST -h $HOST $PORT $LINK -it --rm -v $REEF_HOME:/reef -e REEF_HOME=/reef $IMAGE /root/init-nn.sh
for i in {1..3}
do
docker rm -f hdn-001-0$i
done