Mercurial > public > ssdt-docker
view utils/docker-entrypoint.sh @ 47:a0283d218ff5
handle training instances with prefix in directory name. use docker-compose.yml as template instead of linking. set application property to reduce memory requirements
author | smith@nwoca.org |
---|---|
date | Thu, 04 Feb 2016 22:39:09 +0000 |
parents | 5643072a1af9 |
children | 334d65dac778 |
line wrap: on
line source
#!/bin/bash set -e if [ "$1" = 'update' ]; then cd $SSDT_HOME if [ ! -d ".hg" ]; then echo "cloning repository $SSDT_DOCKER to $SSDT_HOME" mkdir -p $SSDT_HOME hg init fi echo "pulling updates" hg pull -y $SSDT_DOCKER hg update default else exec "$@" fi