You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 27, 2023. It is now read-only.
docker compose up will build service image if a service has an image section.
it should first check if the image is already available locally and use it without rebuilding if available.
users can force rebuilding images with docker compose up --build
When docker compose up must build the image because it is not available locally, it should warn the user it does so only the first time, and let the user know they can for rebuild with --build
docker compose upwill build service image if a service has an image section.it should first check if the image is already available locally and use it without rebuilding if available.
users can force rebuilding images with
docker compose up --buildWhen
docker compose upmust build the image because it is not available locally, it should warn the user it does so only the first time, and let the user know they can for rebuild with--build(to replicate
docker-composebehaviour)