DOCKER

What is Docker? What does it do?

In a nutshell, Docker allows the redeployment of a package of software on another machine with one short line of command.

docker-compose -f my-software.yaml up

where:
            docker-compose is a command-line tool of Docker (along with docker and dockerd) and
            my_software.yaml is a configuration file (called the 'docker compose file') on the target machine.

Suppose you have developed a website that uses Node.js, MongoDB, and MongoExpress.

In the past, to redeploy them to another machine, you would need to:

  1. individually install Node.js, MongoDB and MondoExpress on the target machine,
  2. adjust the settings,
  3. copy over the source files of the website there,
  4. and then launch all the software.

The process can be troublesome and time-consuming, especially when you need to repeat the process as you update your software across different machines. As you rely on another person to perform the task, unexpected problems might arise due to differences in the operating systems and versions of the software.

Now, with Docker, you can accomplish everything by running on the target machine the short line of command above.
You can even redeploy the set of software on a different operating system (such as Windows, Linux, and Mac), assuming all the software and the OSs are reasonably up-to-date.

...and how do we use Docker to do that? The steps are:

  1. Install Docker on both the source and destination machines.
  2. On the source machine, pull the images of Node.js, MongoDB and MongoExpress from the public Docker repository. Run the containers.
  3. Link the different containers to the same Docker network.
  4. Code your website.
  5. Prepare a file named as 'Dockerfile' and build an image for your website.
  6. Push the image you built to an online repository.
  7. Prepare a 'docker compose file' (eg. my-software.yaml) on the target machine.
  8. Run the above command: docker-compose -f my-software.yaml up. This will pull all the software from the repositories and run them.
Docker workflow

That's it. The target machine is ready to serve your website to the public!