#90daysofdevops
Read more stories on Hashnode
Articles with this tag
List of the basic Docker commands that work on both Docker Desktop as well as Docker Engine: docker version – Displays detailed information about...
Docker-Volume Docker allows you to create something called volumes. Volumes are like separate storage areas that can be accessed by containers. They...
Docker Compose Docker Compose is a tool that was developed to help define and share multi-container applications. With Compose, we can create a YAML...
Dockerfile A Dockerfile is like a set of instructions for making a container. It tells Docker what base image to use, what commands to run, and what...
Docker Docker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units...
Docker Build and Docker Run docker build - you can use sh 'docker build . -t <tag>' in your pipeline stage block to run the docker build...