Tag archives for Docker
Top 10 DevOps Interview Questions
Top 10 DevOps Interview Questions I have listed down top 10 DevOps interview questions on few topics like, Git, Maven, Jenkins, Docker, Kubernetes, Ansible. What is the need for DevOps? What is meant by Continuous Integration? What is the difference between Continuous Delivery vs Continuous Deployment? How is devOps different…
Docker Desktop Stuck at “Kubernetes is Starting”
I came across a weird issue in Docker Desktop for windows where Kubernetes was not coming up and it stuck in "Kubernetes is Starting". Please follow below steps to resolve the issue in Windows 10 machine. Quit Docket Desktop Delete the pki folder. Please find the folder in below path…
Docker Frequently Asked Questions and Answers
1) How to stop all docker containers?docker kill $(docker ps -q) 2) How to stop docker containers and remove them?docker rm $(docker ps -a -q) 3) How to remove all Docker Images?docker rmi $(docker images -q) 4) Remove all exited containersList: docker ps -a -f status=exitedRemove: docker rm $(docker ps…
denied: requested access to the resource is denied
denied: requested access to the resource is denied If you face this error while pushing image to remote docker registry then you can use below solution to fix the issue. In my case, I have created few images and I was trying to push those images in remote docker repository…
[Warning] IPv4 forwarding is disabled. Networking will not work
IPv4 forwarding is disabled WARNING I was facing this issue while creating a Docker image in Centos 7. Error: ---> IPv4 forwarding is disabled. Networking will not work. Solution: Add in / Restart network service $ systemctl restart network.