Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Work around: use docker tool ( which will use Virutalbox to create containers )


Install VirtualBoxhttps://www.virtualbox.org/
Install Docker Tool
Start Docker Tool ( shell )

docker tool will create an VM on VirtualBox ( to run the docker's containers )

On the desktop click on :  


or :     C:\Users\jkriker\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Docker


Image Modified

When created 

Image Modified
C:\Program Files\Docker ToolboxImage Modified

https://docs.docker.com/get-started/#recap-and-cheat-sheet


Code Block
titlecheat sheet
## List Docker CLI commands
docker
docker container --help

## Display Docker version and info
docker --version
docker version
docker info

## Execute Docker image
docker run hello-world

## List Docker images
docker image ls

## List Docker containers (running, all, all in quiet mode)
docker container ls
docker container ls --all
docker container ls -aq



Install an Ubuntu dockerdocker run –it ubuntu:latest bash