Open
Description
Problem
docker start
and docker stop
not listed under common CLI commands.
Steps to reproduce the problem
N/A
Screenshots
N/A
Proposed solution
Docker Commands
Please read about Docker concepts and Docker overview to get a sense of what Docker is.
A few common Docker CLI commands you might need for working with treehouses
are:
docker start <container-id>
- start one or multiple stopped containers.docker stop <container-id>
- stop one or multiple running containers.docker ps
– show running containersdocker ps -a
- show all containersdocker logs <container-id> -f
- follow the log output of a containerdocker images
– list images