adding more commands
This commit is contained in:
parent
3e5d1d919a
commit
3d29c62bfb
|
@ -4,6 +4,8 @@ if [[ $# -eq 0 ]] ; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
echo -e "Default \e[44mBlue";
|
||||
|
||||
if [ "$1" == "up" ] ; then
|
||||
echo "Initializing Docker Sync";
|
||||
docker-sync start;
|
||||
|
@ -14,6 +16,13 @@ elif [ "$1" == "down" ]; then
|
|||
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
|
||||
|
|
Loading…
Reference in New Issue