Skip to content

Commit

Permalink
fix(build): docker-compose is now docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Aug 2, 2024
1 parent 969215b commit bbe183d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ jobs:
APPLICATION_SECRETS: ${{ secrets.APPLICATION_SECRETS }}
run: |
echo $APPLICATION_SECRETS | base64 -d > .github/docker/application-secrets.yml
docker-compose -f docker-compose-ci.yml pull
docker-compose -f docker-compose-ci.yml up -d zookeeper kafka elasticsearch vault
docker compose -f docker-compose-ci.yml pull
docker compose -f docker-compose-ci.yml up -d zookeeper kafka elasticsearch vault
sleep 30
docker-compose -f docker-compose-ci.yml up -d
docker compose -f docker-compose-ci.yml up -d
sleep 30
echo "\echo 'path \"*\" {capabilities = [\"create\", \"read\", \"update\", \"delete\", \"list\", \"sudo\"]}' | vault policy write admins -" | docker exec --interactive terraform-provider-kestra_vault_1 sh -
Expand Down

0 comments on commit bbe183d

Please sign in to comment.