mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
It's a flag passed to docker build that removes the intermediate containers left behind on fail builds. Signed-off-by: Adrian Budau <budau.adi@gmail.com>
665 B
665 B
build
Usage: build [options] [SERVICE...]
Options:
--force-rm Always remove intermediate containers.
--no-cache Do not use cache when building the image.
--pull Always attempt to pull a newer version of the image.
Services are built once and then tagged as project_service
, e.g.,
composetest_db
. If you change a service's Dockerfile or the contents of its
build directory, run docker-compose build
to rebuild it.