Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours scrolling social media and waste money on things we forget, but won’t spend 30 minutes a day earning certifications that can change our lives.
Master in DevOps, SRE, DevSecOps & MLOps by DevOpsSchool!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

Docker Toolboox error in Windows

rajeshkumar created the topic: Docker Toolboox error in Windows Error error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.26/info: open //./pipe/docker_engine: The system cannot find the file specified. In the defau lt daemon configuration on Windows, the docker client must be run elevated to co nnect. This error may also indicate that the docker daemon is not running. Solution … Read more

Docker Command line Reference | Docker Tutorial | Docker Guide

One liner to stop all of Docker containers: > docker stop $(docker ps -a -q) One liner to remove all of Docker containers: > docker rm $(docker ps -a -q) OR > docker rm $(docker images -q) OR > docker rmi $(docker images -q) In case of error message Get http:///var/run/docker.sock/v1.14/containers/json?all=1: dial unix /var/run/docker.sock: permission … Read more

Simple Docker workflow – Quick start | Docker Tutorial

docker-workflow

Simple Docker workflow – Quick start In this tutorials, I am trying to cover the simple quickstart Docker workflow and for the example, I am creating Ubantu containee and using it to showcase this tutorial. Step 1 – Download the Ubantu image container from the Docker Hub # docker pull -a ubuntu Step 2 – … Read more

How to get bash or ssh into a running container in background mode?

bash-or-ssh-into-a-running-container

How to get bash or ssh into a running container in background mode? Step 1: First of all, try to find your active container by running # docker ps or # docker ps -a Step 2: If the container is not running, # docker start your_id Step 3: If we use attach we can use … Read more

How to install Atlassian Jira using Docker?

install-atlassian-jira-using-docker

Install Atlassian Jira using Docker Download and Run the jira latest: # docker run –detach –publish 8080:8080 cptactionhank/atlassian-jira:latest Then simply navigate your preferred browser to http://[dockerhost]:8080 and finish the configuration. Notes: JIRA Home location: /var/atlassian/jira JIRA Installation location: /opt/atlassian/jira Reference: https://hub.docker.com/r/cptactionhank/atlassian-jira/