Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 509 Bytes

File metadata and controls

14 lines (8 loc) · 509 Bytes

Overview

A Docker container is lightweight virtualization of one or more processes using OS namespaces and control groups (cgroups). It's also includes a system for "composing" containers out of additional packages and setup steps.

Where's the SSH?

You don't SSH into a docker container. You can run an instance of bash in a container using:

docker exec -it $CONTAINER_ID /bin/bash

You can use the ID number or the name, e.g. gifted_davinci, that is listed when you do docker ps.