compose
compose copied to clipboard
Define and run multi-container applications with Docker
### Description Running the following command to recreate all containers. `docker compose --project-directory /etc/bob/ up --detach --force-recreate --remove-orphans --wait` Recreating 26 different containers, the compose file definition had not changed...
**What I did** Update `cli-docs-gen` tool to remove old reference documentation files **Related issue** N/A **(not mandatory) A picture of a cute animal, if possible in relation to what you...
### Description I've been wondering that a network I've tried to attach using docker-compose.override.yml doesn't attach to my stack. ### Steps To Reproduce 1. create a simple project with docker-compose.yml...
### Description In Docker Compose v1, I was able to create volumes independently using the following syntax: ``` version: '3.2' volumes: volume1: driver: local name: "volume1" ``` However, upon migrating...
**What I did** some commands like `docker compose logs SERVICE` don't have to validate dependencies are well defined in project model **Related issue** fixes https://github.com/docker/compose/issues/10993 **(not mandatory) A picture of...
### Description The linked feature [here](https://github.com/docker/compose/pull/11008/commits/9b2675dce0a588bb4b3ea6d4affd7985acf00e0d) is a valuable addition, allowing users to distribute a Compose application using container image infrastructure (registries/hubs). However, it appears incomplete. The current alpha implementation...
**What I did** - updated `RunWithStatus(...)` to respect custom writer if it is attached to the `ctx` passed in. - added passing unit tests - closes #10091 **Related issue** -...
moved over from https://github.com/moby/moby/issues/43079 Tried some of the "solutions" from this thread and stackoverflow. No swarm, node or other hosts at all. Just trying to get it to work locally...
### Description Imagine a stack like this: ```yml services: db: image: postgres:13.3 environment: POSTGRES_PASSWORD: example POSTGRES_USER: example POSTGRES_DB: example depends_on: hello-world: condition: service_completed_successfully hello-world: image: hello-world profiles: - hello ```...
### Description Not much needs to be said I suppose. Having a `volume` command, context-aware of the services running in the compose file would make it a lot easier to...