blackbirdchess-docker-dev/laradock.sh
2017-07-15 11:04:45 -04:00

30 lines
774 B
Bash
Executable File

#!/bin/bash
if [[ $# -eq 0 ]] ; then
echo "Missing arguments. Please specify 'up' or 'down'.";
exit 1
fi
echo -e '\E[37;44m'"\033[1mContact List\033[0m";
if [ "$1" == "up" ] ; then
echo "Initializing Docker Sync";
docker-sync start;
echo "Initializing Docker Compose";
docker-compose -f docker-compose.yml -f docker-compose.sync.yml -d $@;
elif [ "$1" == "down" ]; then
echo "Stopping Docker Compose";
docker-compose down;
echo "Stopping Docker Sync";
docker-sync stop;
elif [ "$1" == "install" ]; then
echo "Installing docker-sync";
gem install docker-sync;
elif [ "$1" == "sync" ]; then
docker-sync sync;
elif [ "$1" == "clean" ]; then
docker-sync clean;
else
echo "Invalid arguments. Use 'up' or 'down'";
fi