Top "Docker-compose" questions

Compose is a tool for defining and running complex applications with Docker.

Using the host ip in docker-compose

I want to create a docker-compose file that is able to run on different servers. For that I have to …

docker docker-compose
Docker Machine: No space left on device

I'm trying to set up Docker Machine with Docker Compose. Scenario 1 (without Docker Machine) If I run docker-compose up -d …

docker docker-compose docker-machine
E: gnupg, gnupg2 and gnupg1 do not seem to be installed, but one of them is required for this operation

I have installed docker on windows 10 pro. I am facing an issue while running the following command in git-bash. docker-compose …

docker docker-compose
Docker Compose - Share named volume between multiple containers

I'm using docker-compose and v3. I'm trying to mount a volume in docker: ./appdata:/appdata I'd like to have this …

docker docker-compose
Connect to Docker MySQL container from localhost?

I have a docker mysql image running, following is what the docker-compose.yml file looks like: db: image: mysql environment: …

mysql macos docker docker-compose
Version in "./docker-compose.yml" is unsupported. You might be seeing this error because you're using the wrong Compose file version

Here's my docker-compose.yml file: version: '3.1' services: a: image: tutum/hello-world b: image: tutum/hello-world secrets: id: my_…

docker-compose
Which is the best way to pass AWS credentials to Docker container?

I am running docker-container on Amazon EC2. Currently I have added AWS Credentials to Dockerfile. Could you please let me …

amazon-web-services docker docker-compose
how to get docker-compose to use the latest image from repository

I don't know what I'm doing wrong, but I simply cannot get docker-compose up to use the latest image from …

docker build-process docker-compose
Docker Compose: No such image

When I run docker-compose up, I get this error: root@ubuntu:/home/benson/Docker/HaproxyMy# docker-compose up Recreating 950ddc308278_950ddc308278_950…

docker docker-compose
Should I use docker-compose up or run?

Is there a reason to use run to start up a docker-compose.yml file or should you just use up? …

docker docker-compose