Docker move image to another machine

Опубликовано: 03 Ноябрь 2024
на канале: Linuxanthus
14,159
66

This video explains how to copy images to other hosts. Commands used in this tutorial:

docker run ubuntu /bin/bash -c "echo 'creating new image' /tmp/samplefile"
docker commit container id container name
docker history container name
docker save -o /tmp/fridge.tar fridge
tar -tf /tmp/fridge.tar
docker load -i /tmp/fridge.tar