Merge pull request #1279 from scaule/scaule-patch

Don't use docker-compose down to stop containers
This commit is contained in:
Mahmoud Zalt 2017-12-04 08:38:29 +01:00 committed by GitHub
commit d0167475ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ if [ "$1" == "up" ] ; then
elif [ "$1" == "down" ]; then
print_style "Stopping Docker Compose\n" "info"
docker-compose down
docker-compose stop
print_style "Stopping Docker Sync\n" "info"
docker-sync stop
@ -86,4 +86,4 @@ else
print_style "Invalid arguments.\n" "danger"
display_options
exit 1
fi
fi