compose
compose copied to clipboard
Define and run multi-container applications with Docker
docker compose v1.29.2 accepted "--project-dir ..." docker compose v2.2.3: ``` $ docker-compose --project-dir foo unknown flag: --project-dir ```
## Description of the issue I've recently updated from docker-compose `1.27.4` to `1.28.5`. Prior to the update, the following command worked as expected: `docker-compose -f docker-compose.yml -H "ssh://[email protected]" up --build...
### Version ``` docker-compose version 1.29.2, build 5becea4c docker-py version: 5.0.0 CPython version: 3.7.10 OpenSSL version: OpenSSL 1.1.0l 10 Sep 2019 ``` ### Description `docker-compose config` should purge nested x-fields...
**Description** The current implementation of `profiles` allows for zero or more profiles to be assigned to a service but if you assign one or more then you cannot also have...
How to bind a multiple public IP to docker? For example on the host machine I have three different public ip 45.148.28.67, 45.148.31.170, 45.148.31.172 NodeJs Web App from docker will...
## Description of the issue There have already been multiple issues opened about this bug: https://github.com/docker/compose/issues/7486 https://github.com/docker/compose/issues/5864 [A PR already seems to exist which fixes the issue](https://github.com/ko10ok/compose/pull/1) which was posted...
/!\ If your request is about evolving the compose file format, please report on the [Compose Specification](https://github.com/compose-spec/compose-spec) **Is your feature request related to a problem? Please describe.** Let's say I...
DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1 docker-compose build php-fpm Building php-fpm Sending build context to Docker daemon 12.73MB ..... Step 7/39 : RUN --mount=type=cache,target=/var/cache/apk set -ex && apk add --update-cache $PHPIZE_DEPS the --mount option...
## Description of the issue Referencing the `dns` key in YAML does not work when the value is a service alias of another container in the `docker-compose.yml` file. Sample compose...
I tried searching to see if anyone encountered this challenge and I could not retrieve anything. I have a simple docker file: ``` FROM python:3.8 ENV DEBIAN_FRONTEND=noninteractive ENV LANG en_US.utf8...