Skip to content

Commit

Permalink
Replace docker-compose with 'docker compose'
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Sep 10, 2024
1 parent 09ab961 commit c0714f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integrationtest-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ if [[ "$(docker info --format '{{ .Swarm.LocalNodeState }}')" == "inactive" ]];t
echo "Initialize swarm manager."
docker swarm init
fi
docker-compose -f examples/compose/docker-compose-integrationtest.yml -p db up -d
docker compose -f examples/compose/docker-compose-integrationtest.yml -p db up -d

curl -X GET "http://localhost:9984/metrics" -v
2 changes: 1 addition & 1 deletion integrationtest-teardown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -o nounset
set -o errexit
#set -o xtrace

docker-compose -f examples/compose/docker-compose-integrationtest.yml -p db down
docker compose -f examples/compose/docker-compose-integrationtest.yml -p db down

0 comments on commit c0714f9

Please sign in to comment.