Installation guides:
windows - https://docs.docker.com/docker-for-windows/
linux - https://docs.docker.com/engine/install/
mac - https://docs.docker.com/docker-for-mac/install/
-
List currently running docker containers:
docker ps
-
List all docker containers (running and stopped):
docker ps -a
-
Start a container from an image, with a custom name:
docker run --name container_name image
-
Start or stop an existing container:
docker start|stop container_name
-
Pull an image from a docker registry:
docker pull image
-
Open a shell inside of an already running container:
docker exec -it container_name sh
-
Remove a stopped container:
docker rm container_name
-
Fetch and follow the logs of a container:
docker logs -f container_name
No comments:
Post a Comment