Docker Client Operations

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Commands

run
exec

build

Takes a Dockerfile and produces a Docker image.

images

List images.

docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             VIRTUAL SIZE
db                  latest              c0e4c08c3981        3 minutes ago       624.1 MB
rabbitmq            latest              3bb7a967fc6c        7 days ago          179.4 MB

import

Create a new filesystem image from the contents of a tar archive.

gunzip < db.tar.gz | docker import - db

load

Load an image from a tar archive.

ps

List containers.

version

docker version

Scenarios

TO RELOCATE

Running RabittMQ

Running a database