Pages

Wednesday, February 22, 2017

Docker compose

Docker compose is an orchestration tool for docker that allows you to define a set of containers and their interdependencies in the form of a YAML file. Once the yaml file is created , we can use the docker-compose commands to create the whole application stack. Besides this we can track the application output and various other things. The...
Read More

Tuesday, February 21, 2017

Docker - Playing with Dockerfile

Docker images are created either by pulling them online or by creating on our local machine. Containers can be created by using the docker run command. Once the container is started, we have to manually login to the container and perform the actions that we want the container to work with. Docker provides another way to create images...
Read More