Top "Docker-compose" questions

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

How to pass arguments to entrypoint in docker-compose.yml

I use this image: dperson/samba The image is defining it's own entrypoint and I do not want to override …

docker-compose
docker-compose up for only certain containers

I have a docker-compose.yml which contain several containers. Three of them are for my app (client, server and database) …

docker docker-compose
Docker Networking - nginx: [emerg] host not found in upstream

I have recently started migrating to Docker 1.9 and Docker-Compose 1.5's networking features to replace using links. So far with links …

nginx docker docker-compose docker-networking
Docker-Compose can't connect to Docker Daemon

I am getting an error message saying I can't connect to the docker daemon. I have looked into other people's …

ubuntu terminal docker docker-compose
Where is a log file with logs from a container?

I am running several containers using docker-compose. I can see application logs with command docker-compose logs. However I would like …

docker docker-compose
Docker error: invalid reference format: repository name must be lowercase

Ran into this Docker error with one of my projects: invalid reference format: repository name must be lowercase What are …

docker docker-compose
How to upgrade docker-compose to latest version

I have installed docker-compose using the command sudo apt install docker-compose It installed docker-compose version 1.8.0 and build unknown I need …

docker-compose
How do I make a Docker container start automatically on system boot?

Supposed I have a Docker container that I want to run, then I can call $ docker run ... and everything is …

docker docker-compose
Using --add-host or extra_hosts with docker-compose

I am using docker-compose to run a test environment, that consists of about 5 different containers. The inter-container links and the …

docker hosts docker-compose
How to tag docker image with docker-compose

I want to build image via docker-compose and set specific tag to it. Documentation says: Compose will build and tag …

docker docker-compose