🐛 fix(ci.yml): remove unnecessary -d flag from docker compose up command to prevent services from running in detached mode

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-09-16 11:21:27 -03:00
commit 254d9e946d

View file

@ -31,7 +31,7 @@ jobs:
- name: Build and start services
working-directory: ./deploy
run: docker compose up --exit-code-from tests tests queue celeryworker db -d
run: docker compose up --exit-code-from tests tests queue celeryworker db
continue-on-error: true
- name: Stop services