Skip to content

Commit

Permalink
Compose-up script: add bash '-e' flag
Browse files Browse the repository at this point in the history
The '-e' flag will allow for the script to halt
if the first command fails, rather than continue
to what is an otherwise doomed 'compose-up' command.
  • Loading branch information
DanVanAtta committed Dec 5, 2023
1 parent 71b29d1 commit 53d0cbb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .docker/compose-up.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/bash

set -e

./gradlew shadowJar
docker compose -f .docker/docker-compose.yml --ansi never -p triplea up

0 comments on commit 53d0cbb

Please sign in to comment.