Skip to content

Commit

Permalink
Fixed docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
Hennich committed Nov 7, 2024
1 parent 7bcf3af commit a771622
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/enochecker_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
- name: start service
run: |
cd service
docker-compose up --build --force-recreate -d
docker compose up --build --force-recreate -d
- name: start checker
run: |
cd checker
docker-compose up --build --force-recreate -d
docker compose up --build --force-recreate -d
- name: obtain Docker host IP
run: |
echo "ENOCHECKER_TEST_SERVICE_ADDRESS=$(ip -4 address show dev eth0 | grep inet | awk '{ print $2 }' | sed 's|/.*$||')" >> $GITHUB_ENV
Expand All @@ -59,6 +59,6 @@ jobs:
- name: Kill docker containers
if: failure() || success()
run: |
(cd service && docker-compose kill)
(cd checker && docker-compose kill)
(cd service && docker compose kill)
(cd checker && docker compose kill)

0 comments on commit a771622

Please sign in to comment.