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 of the issue A `docker-compose up -d` fails with a `kex_exchange_identification` error when `DOCKER_HOST=ssh://` points to a mac. I do have ssh keys provisioned in ~/.ssh/config for password-less...

kind/bug
Docker Compose V1

# Description The `COMPOSE_IGNORE_ORPHANS` env var works for `docker-compose up` but not for `docker-compose run` Orphan warning is shown: ``` $ cat .env COMPOSE_IGNORE_ORPHANS=1 $ docker-compose run --rm nginx WARN[0000]...

**Description** If it finds orphaned containers, `docker-compose create` will suggest running again with `--remove-orphans`, which is not a flag that `create` accepts. **Steps to reproduce the issue:** 1. `docker-compose create`...

**Description** I have a service that is defined in the `docker-compose.yaml` as well as in the `docker-compose.override.yaml`. The difference is basically that in the `docker-compose.yaml` I'm referencing the `image` property...

**Description** When using docker compose logs -f (V2) or docker-compose logs -f (V1) on my composed services with logging driver set to "none", it outputs some log lines follow by:...

**Send CTRL-C to stop Container doens't work** Start container with "docker containers in the foreground and try to to stop the runing containers with CTRL-C in my terminal (bash). This...

This is clearly a common problem lots of people have been facing (even since 2014, #468), there's pile of closed issues for similar functionality to be added before and they...

kind/feature
status/0-triage

**Description** I have the following command to generate a yaml which used for Compose: ```sh touch laradock/.env docker compose \ --env-file laradock/.env \ -f laradock/docker-compose.yml \ -f docker-compose.override.yml \ convert...

When trying to build with docker compose v2.6.0 I got error: ``` [root@buildagent docker]# docker compose build [+] Building 0.6s (4/4) FINISHED => [internal] load build definition from Server.Dockerfile 0.4s...

**Description** In a compose project using [depends_on](https://docs.docker.com/compose/compose-file/#depends_on), for example ```yaml services: web: image: busybox command: tail -f /dev/null depends_on: db: condition: service_healthy db: image: busybox command: sh -c "exit 1"...