Docker is an industry-standard containerization technology.
# Common Commands
| Operation | CLI Command |
| ---------------------- | ------------------------------------|
| Run a docker image | `docker run [options] {{image-name}}` |
| Build a docker image from Dockerfile | `docker build -t {{image-name}} .` |
| See running containers | `docker ps` |
| See local images | `docker images` |
| | |