1、查看已有镜像 docker images 2、制作dockerfile FROM python LABEL maintainer="JETZ" add . / WORKDIR / 3、新建镜像 docker build -t python3.7.13 . 4、打包导出镜像 docker save python3.7.13 -o /opt/python3.7.13.tar 5、重新加载镜像 cd /opt docker load -i python3.7.13.tar