properly modified start and stop sequences

This commit is contained in:
Bryan Joshua Pedini 2020-02-07 14:47:34 +01:00
parent 992513fd7c
commit a1e930ee8e
1 changed files with 2 additions and 2 deletions

View File

@ -37,11 +37,11 @@ for par in "$@"; do
exit 0
;;
"start")
docker-compose up -d
docker-compose start -d
exit 0
;;
"stop")
docker-compose down
docker-compose stop
exit 0
;;
"full-upgrade")