Top "Docker-compose" questions

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

How to install docker-compose on Windows

If I type the following commands in boot2docker as shown on the docker website: curl -L https://github.com/…

windows docker boot2docker docker-compose
What is the difference between docker-compose up and docker-compose start?

Whenever I execute docker-compose start docker-compose ps I see my containers with the state "UP". If I do docker-compose up …

docker docker-compose
How to set a path on host for a named volume in docker-compose.yml

Example below creates dbdata named volume and references it inside db service: version: '2' services: db: image: mysql volumes: …

docker docker-compose volume
How to directly mount NFS share/volume in container using docker compose v3

I have a compose file with v3 where there are 3 services sharing/using the same volume. While using swarm mode …

docker docker-compose docker-swarm docker-swarm-mode
Access docker container from host using containers name

I am developing a service and using there docker compose to spin services like postgres, redis, elasticsearch. I have a …

docker docker-compose
Docker on Windows 10 "driver failed programming external connectivity on endpoint"

I am trying to use $ docker-compose up -d for a project and am getting this error message: ERROR: for api …

windows github windows-10 docker-compose
Couldn't connect to Docker daemon on Mac OS X

I would like to run multi-container application using docker-compose on Mac OS X El Capitan (v10.11.2). However, the command $ docker-compose …

macos docker docker-compose daemon
docker-compose up vs docker-compose up --build vs docker-compose build --no-cache

I couldn't figure out what the difference between those. docker-compose up docker-compose up --build docker-compose build --no-cache Is there any …

docker docker-compose
ERROR: In file './docker-compose.yml', volume must be a mapping not a string

Question: Why do I get this error? ERROR: In file './docker-compose.yml', volume 'mariavolume' must be a mapping not …

wordpress docker-compose docker-volume
Restart one service in docker swarm stack

Does anyone know if there is a way to have docker swarm restart one service that is part of a …

docker docker-compose docker-swarm