Install docker image offline

  1. docker pull <image>

    docker pull hello-world

  2. docker images

    REPOSITORY    TAG       IMAGE ID       CREATED         SIZE
    hello-world   latest    d2c94e258dcb   15 months ago   13.3kB

  3. docker save -o <output path and filename> <docker image name:tag>

    docker save -o C:\Temp\hello-world-containerimage.tar hello-world:latest

  4. docker load -i <path and filename>

    docker load -i C:\Transfer\hello-world-containerimage.tar

Bewertung der FAQ

0 (0 Abstimmungen)

Tags