AWS, DevOps

How to Automate Docker on Vagrant?

The Docker provides capabilities to ship and run containerized application on the development machine and eliminates inconsistency in the different environment. However, it needs Linux Kernel to run Docker Daemon on the machine. There are many tools to run Docker on Windows/MAC machine. In this post, we will focus on running multiple...

by Rajdeep Singh
Tag: docker-compose
15-Dec-2016

AWS, DevOps

Docker Swarm Multi-Manager Setup

Docker Swarm has gained a lot of popularity in the last few months. It is Docker's orchestration tool. Docker has been coming up with a lot of updates and Docker Swarm is very stable as compared to when it was launched. It is as Docker says "Production Ready." You can go through the blog written by my colleague on how to setup Docker...

by Ranvijay Jamwal
Tag: docker-compose
13-Oct-2016

DevOps

Using Docker Compose to Migrate WordPress Website on Docker

Docker is a like your mini virtual machine that is very light on your host resources. Unlike virtual machines, which need their own kernel, Docker creates virtualized experience on top of your running kernel. The mini virtual machines provided by Docker are called "containers". These containers are platform independent and can be...

by Raghu Sharma
Tag: docker-compose
23-Jun-2016

AWS

Docker Version 1.10 – The Big Change

Docker just released the new Docker version 1.10. Docker has tried push in a lot of big changes in order make it even simpler for its users. Even the last version that was pushed (Docker 1.9) brought about a lot of changes, especially in networking. Let's see in brief, what these changes are and how they will help you to use Docker...

by Ranvijay Jamwal
Tag: docker-compose
07-Feb-2016

DevOps

MongoDB Replica set using Docker Networking and Docker Compose

Recently, I got a chance to dockerize a traditional MongoDB replica set. Currently, I am doing it for QA and UAT environment where MongoDB replica set is setup on a single host. So, in this blog, we will do it on a single host using Docker Networking and Docker Compose. Scenario: Set up a MongoDB replica using version 3.0.5 set...

by Navjot Singh
Tag: docker-compose
16-Dec-2015

AWS, DevOps

Running multi-container Nodejs application using docker-compose

This blog post is about using docker-compose, a tool provided by docker to define and run multi container application using a single command. It uses a docker-compose.yml file as default input file. I got a use case which was to run a Nodejs application behind a Nginx acting as a reverse proxy in two different Docker containers. This...

by Navjot Singh
Tag: docker-compose
18-Oct-2015