Docker三要素:
镜像(Image)可以创建容器(Container)。一个镜像可以创建多个容器。
镜像相当于类,容器相当于类的一个实例对象。
Image container1 = new Image();
Image container2 = new Image();
Image container3 = new Image();
仓库(Repository)是集中存放镜像的地方。
Docker
最新推荐文章于 2024-11-04 15:23:18 发布
Docker三要素:
镜像(Image)可以创建容器(Container)。一个镜像可以创建多个容器。
镜像相当于类,容器相当于类的一个实例对象。
Image container1 = new Image();
Image container2 = new Image();
Image container3 = new Image();
仓库(Repository)是集中存放镜像的地方。