compose icon indicating copy to clipboard operation
compose copied to clipboard

Define and run multi-container applications with Docker

Results 569 compose issues
Sort by recently updated
recently updated
newest added

### Description In Docker 26.0.0, I can still get #253 with my pet `PS1` prompt. Without looking at the code, I'm going to guess that something fails to properly determine...

kind/bug
status/0-triage

### Description Since Docker [25.0.0](https://docs.docker.com/storage/bind-mounts/#configure-bind-propagation), the way recursive bind mounts are handled was changed: > In earlier versions of Docker Engine, recursive mounts (submounts) would always be mounted as writable,...

kind/feature
status/0-triage

### Description When using `docker compose up` (or `watch`), Compose first builds all required images and then starts containers for them. In some workloads, one container is ready to launch...

kind/feature
status/0-triage

### Description When I run the "docker compose ps --format json" command, I get an incorrect json output - I have to write third-party parsers to use it, it's inconvenient....

kind/bug
status/0-triage

### Description This was initially logged in #11460 but only part of it was fixed. The fix applied by #11473 does prevent scale down recreating a container incorrectly, however it...

kind/bug
area/cli

### Description In a docker run command, you can add multiple IP addresses for a single hostname. In a compose file, you can only set one IP per host. ```...

kind/feature
status/0-triage

**What I did** Instead of skipping all watches that overlap with a bind mount, only skip watches that have an action other than "rebuild". This allows us to trigger rebuilds...

### Description I would like to use a bind mount to sync a very large directory, which is a bit more robust than using file watches. File watches tend to...

kind/feature
status/0-triage

### Description I Believe this is part of previous requests https://github.com/docker/compose/issues/1973 & https://github.com/docker/compose/issues/9181. which defines that some commands don't need to validate full config. my issue that when I pull...

kind/bug
status/0-triage

### Description Example `compose.yml` ```yaml services: test: image: ubuntu:latest volumes: - ./${DIRECTORY:?error}/:/home/data ``` Here, I am using the interpolation that throws an error if `DIRECTORY` is empty (see [docs](https://docs.docker.com/reference/compose-file/interpolation/)) When...

kind/bug
status/0-triage