docker 查看image内部文件
docker pull alpinedocker create --name foo alpine falsedocker export foo | # Export the entire filesystem as a tape archivetar -tf- | # Use tar to output the names of filesless # pipe to less...
·
docker pull alpine
docker create --name foo alpine false
docker export foo | # Export the entire filesystem as a tape archive
tar -tf- | # Use tar to output the names of files
less # pipe to less to page the output
更多推荐
已为社区贡献4条内容
所有评论(0)