This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # restart services in docker-compose | |
| service-restart() { | |
| docker-compose stop $@ | |
| docker-compose rm -f -v $@ | |
| docker-compose up --force-recreate --no-start $@ | |
| docker-compose start $@ | |
| } |