modified bash script

This commit is contained in:
Arian Acosta 2017-07-15 09:40:25 -04:00
parent 5ea7b98db8
commit e9a01c0174
1 changed files with 17 additions and 0 deletions

17
laradock.sh Normal file → Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
if [[ $# -eq 0 ]] ; then
echo "Missing arguments. Please specify 'up' or 'down'.";
exit 1
fi
if [[ $1 -eq "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 nginx mysql;
else
echo "Stopping Docker Compose";
docker-compose down;
echo "Stopping Docker Sync";
docker-sync start;
fi