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 9e67c09 commit 9bfad4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
- name: Build the docker-compose stack
if: ${{ github.event.inputs.skip-test == 'false' || github.event.inputs.skip-test == '' }}
run: |
docker-compose -f docker-compose-ci.yml up -d
docker compose -f docker-compose-ci.yml up -d
sleep 10
curl -s -o .github/workflows/mongo_data.jsonl https://raw.githubusercontent.com/ozlerhakan/mongodb-json-files/master/datasets/books.json
docker exec plugin-mongodb_mongo_1 sh -c "mongoimport --authenticationDatabase admin -c books "mongodb://root:example@localhost/samples" /tmp/docker/mongo_data.jsonl > /dev/null"
docker compose -f docker-compose-ci.yml exec mongo sh -c "mongoimport --authenticationDatabase admin -c books "mongodb://root:example@localhost/samples" /tmp/docker/mongo_data.jsonl > /dev/null"
# Caches
- name: Gradle cache
Expand Down

0 comments on commit 9bfad4d

Please sign in to comment.