Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.01 KB

build.md

File metadata and controls

27 lines (22 loc) · 1.01 KB
description keywords title notoc
docker-compose build
fig, composition, compose, docker, orchestration, cli, build
docker-compose build
true
Usage: build [options] [--build-arg key=val...] [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.
    -m, --memory MEM        Sets memory limit for the build container.
    --build-arg key=val     Set build-time variables for one service.

Services are built once and then tagged, by default as project_service. For example, composetest_db. If the Compose file specifies an image name, the image is tagged with that name, substituting any variables beforehand. See variable substitution.

If you change a service's Dockerfile or the contents of its build directory, run docker-compose build to rebuild it.