April 28, 2022
Docker
docker pull <image name> # This command is used to pull images from the docker
docker run -it -d <image name> </br> # This command is used to create a container from an image
docker ps # This command is used to list the running containers
docker ps -a # This command is used to show all the running and exited containers
docker exec -it <container id> bash # This command is used to access the running container