#python
Read more stories on Hashnode
Articles with this tag
What should we learn in Python for DevOps? Python Learning Roadmap For DevOps Engineers If you are starting your DevOps engineer journey and want to...
To connect a running container to an existing network: docker network connect <network-name> <conatainer name or id> docker network ls:list the...
What are Namespaces and Services in k8s In Kubernetes, Namespaces are used to create isolated environments for resources. Each Namespace is like a...
What is CI/CD? Automate the software development workflows and deploy better quality code, more often. Using a continuous and iterative process to...
Docker Compose is used to run multiple containers as a single service. For example, suppose you had an application which required NGNIX and MySQL, you...
Dockerfile Docker is a tool that makes it easy to run applications in containers. Containers are like small packages that hold everything an...