compose
compose copied to clipboard
Define and run multi-container applications with Docker
### Description `-V, --renew-anon-volumes Recreate anonymous volumes instead of retrieving data from the previous containers.` This functions differently than in V1 ### Steps To Reproduce With docker-compose v1 it was...
### Description Today you can make use of the docker-compose scale functionality to scale up running containers on the flay, by calling somehething like: `docker-compose scale middleware=2` wich works ok,...
### Description Im Trying to build a container on top of an already pre-build `base` container. `Docker build` works fine, takes the pre-build one from the local cache and builds...
**What I did** Fixes the misconfiguration of home and config directories created by the e2e framework, also added the user `config.json` to avoid `docker login` message when pulling images (for...
## Description of the issue If a compose file defines multiple services that share an overlapping port range, a port conflict occurs when `docker-compose up` is executed. This behavior started...
### Description The proxy will not be applied when pulled an image (new / old, as long as it's **_metadata_** isn't in cache) ### Steps To Reproduce ### Error reproduce...
**What I did** Ability to filter images by services which uses built images implement proposal of #8994 , exactly, option 1 **Related issue** #8994 **(not mandatory) A picture of a...
### Description ```yaml version: "3.9" services: nginx: build: context: ../ dockerfile: .gitlab/nginx/Dockerfile ports: - "80:80" cap_add: - NET_ADMIN abc: image: registry/abc:latest ports: - "127.0.0.1:1234:1234" moar_underscored_services: image: registry/moar_underscored_services:latest ports: - "127.0.0.1:9012:9012"...
**Description** `docker compose` is unable to deploy stack(s) to remote hosts, the hostname appears to be hardcoded in docker(?) ``` bartek@czajniczek ~/Desktop [18]> docker compose -p "project_name" pull [+] Running...
### Description Hi ! We're using the `--project-directory` flag to store all our docker compose related files in a `.docker` directory. The frameworks we're using in our web projects are...