Github user ottobackwards commented on a diff in the pull request:
https://github.com/apache/metron-bro-plugin-kafka/pull/21#discussion_r238850336
--- Diff: docker/example_script.sh ---
@@ -0,0 +1,177 @@
+#!/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.
+#
+
+shopt -s nocasematch
+
+CREATED_NETWORK_FLAG=false
+RAN_ZK_CONTAINER=false
+RAN_KAFKA_CONTAINER=false
+CREATED_BRO_CONTAINER=false
+RAN_BRO_CONTAINER=false
+
+SKIP_REBUILD_BRO=false
+LEAVE_RUNNING=false
+
+SCRIPT_DIR=./scripts
+CONTAINER_DIR=./containers/bro-localbuild-container
+CONTAINER_NAME=
+LOG_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && cd logs
&& pwd )"
+
+function help {
+ echo " "
+ echo "usage: ${0}"
+ echo " --skip-docker-build Skip build of bro docker
machine."
+ echo " --leave-running Do not stop containers after
script. The cleanup_containers.sh script should be run when done."
+ echo " -h/--help Usage information."
+ echo " "
+ echo " "
+}
+
+function shutdown {
+
+ if [[ "$RAN_BRO_CONTAINER" = true ]]; then
+ "${SCRIPT_DIR}"/stop_container.sh --container-name=bro
+ fi
+
+ if [[ "$RAN_KAFKA_CONTAINER" = true ]]; then
+ "${SCRIPT_DIR}"/stop_container.sh --container-name=kafka
+ fi
+
+ if [[ "$RAN_ZK_CONTAINER" = true ]]; then
+ "${SCRIPT_DIR}"/stop_container.sh --container-name=zookeeper
+ fi
+
+ if [[ "$CREATED_NETWORK_FLAG" = true ]]; then
+ "${SCRIPT_DIR}"/destroy_docker_network.sh --network-name=bro-network
+ fi
+}
+
+# handle command line options
+for i in "$@"; do
+ case $i in
+
+ #
+ # FORCE_DOCKER_BUILD
+ #
+ # --skip-docker-build
+ #
+ --skip-docker-build)
+ SKIP_REBUILD_BRO=true
+ shift # past argument
+ ;;
+
+ #
+ # LEAVE_RUNNING
+ #
+ # --leave-running
+ #
+ --leave-running)
+ LEAVE_RUNNING=true
+ shift # past argument
+ ;;
+
+ #
+ # -h/--help
+ #
+ -h|--help)
+ help
+ exit 0
+ shift # past argument with no value
+ ;;
+ esac
+done
+EXTRA_ARGS="$@"
+echo "Running with "
+echo "SKIP_REBUILD_BRO = $SKIP_REBUILD_BRO"
+echo "==================================================="
+
+# create the network
+bash "${SCRIPT_DIR}"/create_docker_network.sh --network-name=bro-network
+rc=$?; if [[ ${rc} != 0 ]]; then
+ shutdown
+ exit ${rc}
+else
+ CREATED_NETWORK_FLAG=true
+fi
+
+
+
+# run the zookeeper container
+bash "${SCRIPT_DIR}"/run_zookeeper_container.sh --network-name=bro-network
+rc=$?; if [[ ${rc} != 0 ]]; then
+ shutdown
+ exit ${rc}
+else
+ RAN_ZK_CONTAINER=true
+fi
+
+# run the kafka container
+bash "${SCRIPT_DIR}"/run_kafka_container.sh --network-name=bro-network
+rc=$?; if [[ ${rc} != 0 ]]; then
+ shutdown
+ exit ${rc}
+else
+ RAN_KAFKA_CONTAINER=true
+fi
+
+#build the bro container
+if [[ "$SKIP_REBUILD_BRO" = false ]] ; then
+ bash "${SCRIPT_DIR}"/build_container.sh \
+ --container-directory="${CONTAINER_DIR}" \
+ --container-name=bro-docker-container:latest
--- End diff --
done
---