January 2019

docker

Docker: backup and restore of a database

It is very important to backup databases deployed using containers. Else once the container stops, all data in it will be gone. For this exercise we will continue the example used in previous post that created…


docker

Docker: Docker-compose – A wordpress site

The docker-compose is a CLI tool that automates some very long arguments we other wise will be passing to “docker run” command. This tool will also help us to start multiple containers at the same time. In real…



docker

Docker: Running Docker commands

This tutorial is a continuation of a previous post Docker: Installation and basics The command to run a container from an image is: [root@gw20-lap-doc1 ~]# docker run <image name> The command docker run image = docker…