Differences between revisions 4 and 5
Revision 4 as of 2019-02-08 17:12:45
Size: 638
Editor: scot
Comment:
Revision 5 as of 2019-02-08 19:42:10
Size: 726
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 31: Line 31:

## Start a new container running the ubuntu image
docker run -t -i ubuntu /bin/bash

Experimenting with Docker

I just started playing with Docker and kubernete. But first I played with Docker.

Docker

To install this try the convenience script: https://get.docker.com/.

Common Commands - Managing images

## 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

## Start a new container running the ubuntu image
docker run -t -i ubuntu /bin/bash

NetworkConfiguration/Docker (last edited 2021-08-13 16:18:58 by scot)