🐛 fix(ci.yml): fix docker compose command to correctly specify the compose file before the up command

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-09-23 23:44:02 -03:00
commit bc904fba69

View file

@ -37,7 +37,7 @@ jobs:
- name: Build and start services
working-directory: ./deploy
run: docker compose up -f docker-compose.yml --exit-code-from tests tests result_backend broker celeryworker db --build
run: docker compose -f docker-compose.yml up --exit-code-from tests tests result_backend broker celeryworker db --build
continue-on-error: true
- name: Stop services