25% off

Use code FUNCMAIN at checkout for 25% off all premium courses.

Get started →

Helpful Commands for Docker

January 9, 2022
Elliot Forbes

Elliot Forbes

Course Instructor

Hey Gophers! My name is Elliot and I'm the creator of TutorialEdge and I've been working with Go systems for roughly 5 years now.

Working with Containers

Listing All Containers

$ docker ps

Listing Killed Containers

$ docker ps -a

Getting Container Logs

$ docker logs abc

Stopping a Container

$ docker kill abc

Working with Images

Listing All Images

$ docker images