Github user njayaram2 commented on a diff in the pull request:
https://github.com/apache/madlib/pull/181#discussion_r139573892
--- Diff: tool/docker_start.sh ---
@@ -0,0 +1,98 @@
+#!/bin/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.
+
+###############################################################################
+# This is a script that does the following:
+# * Pull madlib/postgres_9.6:latest from docker;
+# * Mount your local madlib directory to docker container;
+# * Build madlib from source; build dir is /madlib/docker_build which
+# is mounted to your local madlib dir
+# * Install madlib and run install check;
+# * Log in to docker container from shell as postgres user, so that you
+# can run psql and start using madlib from here
+#
+# Note: you have to run this script from one level up from your madlib
+# directory, for example, ~/workspace which has madlib src directory there
+###############################################################################
+set -o pipefail
+
+workdir=$(pwd)
+user_name=$(whoami)
+reponame=madlib
+
+echo
"======================================================================"
+echo "Build user: ${user_name}"
+echo "Work directory: ${workdir}"
+echo "Git reponame: ${reponame}"
+echo
"======================================================================"
+
+if [[ ! -d "${workdir}/${reponame}" ]]; then
+ echo "Error: you have to run this script from one level up from your
madlib \
+ directory, for example, ~/workspace which has madlib src directory
\
+ there"
+ exit
+fi
+
+rm -rf logs
+mkdir logs
--- End diff --
rename the `logs` folder to `build-docker-logs`, just to indicate that this
log folder is related to docker based build folder.
---