重用多个docker镜像中的图层

时间:2017-10-09 14:37:15

标签: docker docker-compose

我有许多微服务都在centos上运行。我不知道是否可能,但有没有办法获得OS Layer并在构建图像时重用它?

1 个答案:

答案 0 :(得分:1)

您可以创建一些基本图像,例如MyBaseImage:latest,将它们推送到存储库。您可以根据第一张图像构建另一个图像。

Dockerfile

FROM MyBaseImage:latest // <- new image will be build based on this image
...ohter commands