Last active
November 12, 2019 13:03
-
-
Save kungfoo/e4865423312829e8b74e6c43b602740a to your computer and use it in GitHub Desktop.
Generic start and stop scripts for quick turnaround using gradle and docker-compose
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 | |
docker-compose down |
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 | |
./gradlew distTar | |
docker-compose up --build -d |
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 | |
docker-compose stop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment