docker install image code example

Example 1: docker image load

$ docker load --input fedora.tar
$ docker load -i fedora.tar

Example 2: docker getting-started

#make sure docker is installed 
docker run -dp 80:80 docker/getting-started

Example 3: docker images command

docker images


NOTE:
To see which images are present locally, use the "docker images" command:
REPOSITORY   TAG      IMAGE ID        CREATED      SIZE
debian       jessie   f50f9524513f    5 days ago   125.1 MB
debian       latest   f50f9524513f    5 days ago   125.1 MB

Tags:

Misc Example