Skip to content

Commit

Permalink
fix docker-compose call in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolkenfarmer committed Sep 5, 2024
1 parent 6433e44 commit 28b0f9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Build frontend Docker container
run: |
cd ./frontend/
docker-compose --env-file .env.dev up -d
docker compose --env-file .env.dev up -d
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Build backend Docker containers
run: |
cd ./backend/dps_training_k/
docker-compose --env-file .env.dev up -d
docker compose --env-file .env.dev up -d
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Run docker containers with deploy dev configuration
run: |
docker-compose -f docker-compose.dev.yml up -d
docker compose -f docker-compose.dev.yml up -d
- name: Run integration tests
run: |
Expand Down

0 comments on commit 28b0f9e

Please sign in to comment.