My docker images are built on a Jenkins CI server and are pushed to our private Docker Registry. My goal is to provision environments with docker-compose which always start...
I have a docker-compose.yml which contain several containers. Three of them are for my app (client, server and database) and the rest are for various dev tools (e.g. psql,...
My docker compose file has three containers, web, nginx, and postgres. Postgres looks like this: postgres: container_name: postgres restart: always image: postgres:latest volumes: - ./database:/var/lib/postgresql ports: - 5432:5432 My...
docker and docker-compose seem to be interacting with the same dockerFile, what is the difference between the two tools? 4 Answers 4
I’m using docker-compose to create my development environment. I want to build a specific image, but I don’t know how to set a name for that image. wildfly: build:...
I use docker logs...
According to the Docker Compose’s compose-file documentation: depends_on – Express dependency between services. links – Link to containers in another service and also express dependency between services in the...
I am trying to dockerize a PHP application. In the dockerfile, I download the archive, extract it, etc. Everything works fine. However, if a new version gets released and...
This question’s answers are a community effort. Edit existing answers to improve this post. It is not currently accepting new answers or interactions. While diving into Docker, Google Cloud...
There are scope of services which defined in docker-compose.yml. These service have been started. I need to rebuild only one of these and start it without up other services....