Skip to content

Commit

Permalink
-p is not neede for docker-compose - it can use whatever project name…
Browse files Browse the repository at this point in the history
… it has

(cherry picked from commit 70f09cf5705fee1e2121e925f7fc6359a95e31f7)
  • Loading branch information
angryziber authored and karnilaev committed Aug 6, 2021
1 parent 59c5ca4 commit 538a484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
- run: ./gradlew jar

- name: Start Test DB
run: docker-compose -p app up -d db && sleep 3 && docker-compose logs
run: docker-compose up -d db && sleep 3 && docker-compose logs
- name: Test Server
run: ./gradlew --info test
- name: E2E Tests
run: ./gradlew --info -Pheadless=true e2eTest
- name: Stop Test DB
run: docker-compose -p app down
run: docker-compose down

- uses: actions/upload-artifact@v2
if: always()
Expand Down

0 comments on commit 538a484

Please sign in to comment.