compose
compose copied to clipboard
Define and run multi-container applications with Docker
### Description **Current Behaviour:** In one of my projects I have the `COMPOSE_PROJECT_NAME` set to 'MyCoolProject', up until v2.17.2, this was accepted. With v2.17.3, I get an incomplete error message...
### Description See https://github.com/getsops/sops/issues/1470. When `sops exec-file` is used, it by default uses a named pipe (instead of writing the decrypted file to disk). It seems that Compose tries to...
**What I did** In addition to tracing, add support for metering (counters/gauges/etc) via OpenTelemetry with similar OTLP/gRPC auto-enablement. User-defined endpoints not currently supported; this will be added as a follow-up....
### Description I want postgres database to use separate data volumes for each git branch. I am passing the `CURRENT_GIT_BRANCH` value through `.env` file. Here is the docker compose file...
**What I did** **Related issue** **(not mandatory) A picture of a cute animal, if possible in relation to what you did**
### Description Since v.2.24 (possibly way before) some behaviour has changed in the way volume mounting and binding works. What I try to achieve with this setup is that code...
**What I did** Adds a new optional field `OutPrinter` to the `BuildOptions` struct to allow customizing where the build progress goes. If this field is not specified, output will go...
### Description Example docker compose file : ``` postgres-db:
**What I did** Re-claim the `--debug` flag for debug logging. Keep the `--verbose` flag hidden (for compat), but now as a no-op. In the future, we should use `--verbose` for...
### Description #### Problem ```yaml services: db: ... migration: depends_on: db: condition: service_healthy ... app: depends_on: migration: condition: service_completed_successfully ... ``` Migration container started every time `docker compose up` fired....