cypress-io / cypress-docker-images

Docker images with Cypress dependencies and browsers
https://on.cypress.io/continuous-integration
MIT License
1.02k stars 380 forks source link

ci: fix compose --progress plain build cli syntax #1162

Closed MikeMcC399 closed 1 month ago

MikeMcC399 commented 1 month ago

Issue

Multiple job logs from the circle.yml workflow show the warning:

--progress is a global compose flag, better use `docker compose --progress xx build ...#0 building with "default" instance using docker driver

in response to a Docker CLI command such as:

docker compose build --progress plain test-factory-cypress-included-electron

Change

Move the --progress compose flag in each of the relevant instances in circle.yml as suggested by the warning. For example, change to:

docker compose --progress plain build test-factory-cypress-included-electron

cypress-app-bot commented 1 month ago