chore: simplify Docker Compose commands in CI workflow

- Updated the CI workflow to streamline Docker Compose commands by replacing separate build and up commands with a single `docker compose up --build -d` command. This change enhances the efficiency of the CI process by reducing the number of steps required to start the services.
This commit is contained in:
2024-12-05 18:46:28 +07:00
parent 14edf629bd
commit 253dbc783b

View File

@@ -26,5 +26,4 @@ jobs:
run: | run: |
docker compose pull docker compose pull
docker compose down docker compose down
docker compose build --no-cache docker compose up --build -d
docker compose up -d --force-recreate