1、关于镜像 获取镜像 docker pull [image name] [option:tag] 1 //获取postgres镜像(没有设置镜像版本号则默认获取最新的,使用`latest`标记) 2 3 docker pull postgres 4 5 or 6 7 docker pull pos