post-image

Hướng dẫn load docker image từ file tar (docker load)

Tổng quan

Trong bài này mình sẽ thực hiện restore image được back up thành file .tar bởi lệnh docker save

(Xem lại: Ví dụ docker save)

Để load các image từ định dạng file .tar ta dùng lệnh docker load

Cú pháp:

docker load -i file_path

Ví dụ:

hiện tại trên máy mình không có image nào. Và mình đang có 1 image dưới dạng file .tar ở images/ubuntu.tar

(đây là images ubuntu:18.04 được backup bằng lệnh docker save)

Để load image đó mình dùng lệnh:

docker load -i images/ubuntu.tar
Hướng dẫn load docker image từ file tar (docker load)

Nguồn: https://stackjava.com/docker/huong-dan-load-docker-image-tu-file-tar-docker-load.html

References: https://docs.docker.com/engine/reference/commandline/load/

Leave a Reply

Your email address will not be published. Required fields are marked *