こちらの記事ではインターネット接続できないPCにDockerのImagesをインストールする方法のメモです。
Reference link
https://docs.docker.com/reference/cli/docker/image/save/
https://docs.docker.com/reference/cli/docker/image/load/
Step1:Pull Images From PC that with Internet
Image PullできるPCから以下のコマンドを実行します。このコマンドにより、Ubuntu Images FileをローカルDiskに保存できます。
sudo docker pull ubuntu sudo docker save -o ubuntu_image.docker ubuntu |
Step2:Transfer the Image to Offline Environment
SSH ClientもしくはFTP Clientなどを使用し、ubuntu_image.dockerをTarget OSに転送します。
Step3:Install the Docker image in Offline Environment
下記のコマンドを使用し、Docker ImagesをLoadします。
sudo docker load -i /home/admin/ububtu_image.docker |
少々お待ち下さい…
Step4:Check the result
下記のコマンドでImagesを確認します。
sudo docker image ls |
Ubuntu Imagesが無事にインストールできるはずです。