DOCKER CONCEPT FOR DBA – PART 8 How to build docker image from docker file
1.You need to create docker file first.Below is example of small test docker file. root@deb-VirtualBox:~# cat test_docker.file FROM centos:latest RUN yum update -y Here please note that FROM clause denotes first we need to pull centos image and RUN clause will run yum update on top of it. 2.Now I will build the docker image . -t option is used […]