# docker compose build

**Descripción:** Build or rebuild services

**Uso:** `docker compose build [OPTIONS] [SERVICE...]`










## Descripción

Services are built once and then tagged, by default as `project-service`.

If the Compose file specifies an
[image](https://github.com/compose-spec/compose-spec/blob/main/spec.md#image) name,
the image is tagged with that name, substituting any variables beforehand. See
[variable interpolation](https://github.com/compose-spec/compose-spec/blob/main/spec.md#interpolation).

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


## Opciones

| Opción                                                        | Predeterminado                                        | Descripción                                                                                                                                    |
| ------------------------------------------------------------- | ----------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|  | `--build-arg` |  |  Set build-time variables for services |

 | `--builder` |  |  Set builder to use |

 | `--check` |  |  Check build configuration |

 | `-m`, `--memory` |  |  Set memory limit for the build container. Not supported by BuildKit.<br> |

 | `--no-cache` |  |  Do not use cache when building the image |

 | `--print` |  |  Print equivalent bake file |

 | `--provenance` |  |  Add a provenance attestation |

 | `--pull` |  |  Always attempt to pull a newer version of the image |

 | `--push` |  |  Push service images |

 | `-q`, `--quiet` |  |  Suppress the build output |

 | `--sbom` |  |  Add a SBOM attestation |

 | `--ssh` |  |  Set SSH authentications used when building service images. (use 'default' for using your default SSH Agent)<br> |

 | `--with-dependencies` |  |  Also build dependencies (transitively) |







