Skip to content

Commit

Permalink
ci(test/conformance): compose cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
awill1988 committed Aug 6, 2024
1 parent 0b3ecfc commit d660847
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/5min-tutorial.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DB=${DB:-postgres}
TRACING=${TRACING:-false}
PROMETHEUS=${PROMETHEUS:-false}

DC="docker-compose -f quickstart.yml"
DC="docker compose -f quickstart.yml"
if [[ $DB == "mysql" ]]; then
DC+=" -f quickstart-mysql.yml"
fi
Expand Down
2 changes: 1 addition & 1 deletion test/conformance/purge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
set -euxo pipefail
cd "$( dirname "${BASH_SOURCE[0]}" )/../.."

docker-compose -f quickstart.yml -f quickstart-postgres.yml -f test/conformance/docker-compose.yml down -v
docker compose -f quickstart.yml -f quickstart-postgres.yml -f test/conformance/docker-compose.yml down -v
2 changes: 1 addition & 1 deletion test/conformance/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -euxo pipefail
cd "$( dirname "${BASH_SOURCE[0]}" )/../.."

# shellcheck disable=SC2086
docker-compose -f quickstart.yml -f quickstart-postgres.yml -f test/conformance/docker-compose.yml up ${1:-} -d --force-recreate --build
docker compose -f quickstart.yml -f quickstart-postgres.yml -f test/conformance/docker-compose.yml up ${1:-} -d --force-recreate --build

0 comments on commit d660847

Please sign in to comment.