© nickjanetakis.comBasic commandsdocker images # view images docker ps -a # view containers status docker pull ubuntu # downloads ubuntu imagedocker run -d ubuntu # de-attached mode docker run -it ubuntu # interactive mode docker run -d --name myubuntu ubuntu # naming docker run -it … [Read more...] about Docker cheatsheet