#devops-articles
Read more stories on Hashnode
Articles with this tag
What is CI/CD? CI/CD stands for Continuous Integration/Continuous Delivery (or Continuous Deployment). It is a set of practices and tools that help...
Kubernetes networking is the way that containers and services within a Kubernetes cluster communicate with each other. The network infrastructure of a...
What is Jenkins? Jenkins is an open-source automation tool that is widely used for continuous integration (CI) and continuous delivery (CD) of...
Run a new Container Start a new container from an Image #docker run IMAGE docker run nginx and assign it a name #docker run --name IMAGE NAME docker...
Docker-Volume Docker volumes are a way to manage persistent data in Docker containers. By default, when you create a Docker container, any data that...
What is Docker Compose? Docker Compose is a tool that allows developers to define and run multi-container Docker applications. It is used to create...