From LedHed's Wiki
Revision as of 21:08, 1 January 2021 by Ledhed (Talk | contribs)

Jump to: navigation, search

Overview

This is a list of common commands used to manage docker. For a complete command reference go here: https://docs.docker.com/engine/reference/commandline/docker/


List All Containers

docker container list -a


Enter Container's Shell

docker exec -it MyContainer /bin/bash

MyContainer = the name of the container you want to access


Start Container

docker start MyContainer


Start All Stopped Containers

docker start $(docker ps -a -q -f status=exited)


Stop Container

docker stop MyContainer


Version

docker --version


Reference

https://docs.docker.com/engine/reference/commandline/docker/