# dockerdemo **Repository Path**: doujichao11/dockerdemo ## Basic Information - **Project Name**: dockerdemo - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-21 - **Last Updated**: 2024-08-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 1、提交镜像 docker commit -p jdk001 openjdk:0.0.3 2、查看镜像依赖 docker inspect --format='{{.Id}} {{.Parent}}' $(docker images --filter since=b175e7467d66 --quiet) 3、保存新镜像 docker save -o openjdk.3.tar openjdk:0.0.3 4、加载新的镜像 docker load -i ./openjdk.3.tar 5、查看网络 docker network ls 6、查看配置 docker inspect [id] git config --global user.email "you@example.com" git config --global user.name "Your Name"