Docker File

Docker File Docker file is basically used for automating image building. This is done via all details provided to a file which is known as Docker file.It is very useful for building images. You don’t need manual intervention to build images, upgrade it etc.You can write it anywhere in the system where you have access. […]

Docker Inspect

Docker inspect command is very useful to provide detailed information about any container. It provides all information related to image, volume etc. without login into container.You can find out each details you needed. # docker inspect container (Put container’s actual name or ID of the container you want to inspect) # docker inspect ubuntu:latest (To […]

Introduction to YAML

YAML stands for “YAML Ain’t Markup Language” or sometimes “YAML Ain’t a Markup Language”. It is simple, text-based and human readable format. It is very easy to understand.It is a data serialization language. It is vastly used in DevOps. It also works in promgramming language like python, Go, etc. If you see DevOps tools, it […]

Docker Images

Docker is a platform for developing, shipping and running applications inside a containers. Docker images are those templates which can be used by you to run applications.You can use below link for installing docker on ubuntu system. Install Docker on Ubuntu OS Now we will go through docker commands. This page will show you about […]

Install Docker on Ubuntu OS

Docker is a community and open source container technology. Docker is platform for developing, running and shipping applications in containers. Containers are very light weight, isolated operating system or environment. It runs for development as well as production. It is widely used due to its portability and scalability character. If you talk about docker architecture, […]

MacVLAN in Docker Networking

Macvlan in docker is a networking driver which allows you to create multiple virtual network interfaces (i.e.,MAC addresses) on a single physical network interface. And we can connect each of these virtual interfaces to a Docker container which gives each container its own unique network identity on the same physical network on which host IP […]

Docker Commands

# systemctl start docker (Starting Docker service) # systemctl enable docker (Enabling Docker at boot level) # docker –version (Checking Docker version) # docker info (Gives all information about host and containers) # docker run/pull image (images can be downloaded from Docker Hub) # docker run hello-world (Just download and start a test container) # […]