Docker
What is Docker and it's command list ?
Docker is an open-source containerization platform that allows developers to create, deploy, and run applications in a portable and isolated environment called a container. With Docker, developers can package an application and its dependencies into a container image that can be run on any machine that supports Docker.
Here is a list of some commonly used Docker commands:
docker build: Builds a Docker image from a Dockerfile.
docker run: Runs a Docker container from a Docker image.
docker pull: Pulls a Docker image from a remote repository.
docker push: Pushes a Docker image to a remote repository.
docker ps: Lists all running Docker containers.
docker images: Lists all Docker images on the local machine.
docker exec: Executes a command inside a running Docker container.
docker stop: Stops a running Docker container.
docker rm: Removes a stopped Docker container.
docker rmi: Removes a Docker image from the local machine.
docker network: Manages Docker networks.
docker volume: Manages Docker volumes.
docker-compose: Manages multi-container Docker applications.
docker logs: Displays the logs of a running Docker container.
docker inspect: Inspects a Docker container or image.
These are just a few of the most commonly used Docker commands, and there are many more available depending on your specific needs.