Vitis-AI saves the current docker image and saves the dependencies and installation packages of the current code environment

# Encapsulate the image into a Tar package

docker save d1a36 -o copynginx.tar is saved to the directory where the command is currently executed by default **Here is the main point, try not to use id to save, otherwise the name cannot be restored when restoring**

load image

docker load -i copynginx.tar

mirror id,

Query via docker ps -a

Guess you like

Origin blog.csdn.net/sinat_34626178/article/details/130636982