Top "Docker-compose" questions

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

How to pass arguments within docker-compose?

Docker 1.9 allows to pass arguments to a dockerfile. See link: https://docs.docker.com/engine/reference/builder/#arg How can …

docker dockerfile docker-compose
docker-compose, run a script after container has started?

I have a service that I am bringing up through Rancher via docker-compose. The issue I am running into is …

docker docker-compose dockerfile rancher
Docker "ERROR: could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network"

I have a directory apkmirror-scraper-compose with the following structure: . ├── docker-compose.yml ├── privoxy │   ├── config │   └── Dockerfile ├── scraper │   ├── Dockerfile │   ├── newnym.py │   └── requirements.txt └── …

python docker docker-compose
How to view log output using docker-compose run?

When I use docker-compose up I can see logs for all containers in my docker-compose.yml file. However, when I …

docker docker-compose
Docker-compose: node_modules not present in a volume after npm install succeeds

I have an app with the following services: web/ - holds and runs a python 3 flask web server on port 5000. …

node.js docker ubuntu-14.04 docker-compose
Is it safe to clean docker/overlay2/

I got some docker containers running on AWS EC2, the /var/lib/docker/overlay2 folder grows very fast in disk …

docker docker-compose docker-machine
How to run docker-compose up -d at system start up?

To let the containers autostart at startup point, I tried to add the command: cd directory_has_docker-compose.yml &&…

docker docker-compose
Where is docker image location in Windows 10?

I' using Windows 10 Home operating system. I have installed Docker toolbox. I have created docker image of my .net core …

docker docker-compose docker-for-windows
Docker-Compose with multiple services

THIS IS A SAMPLE QUESTION! NEVER DO IT IN PRODUCTION. RUN NGINX / PHP / OTHER SERVICES IN SEPARATE CONTAINERS! When I …

docker docker-compose
How to create a DB for MongoDB container on start up?

I am working with Docker and I have a stack with PHP, MySQL, Apache and Redis. I need to add …

mongodb docker docker-compose