gpt4 book ai didi

image - 如何使用 ansible docker_image 模块标记本地 docker 镜像?

转载 作者:行者123 更新时间:2023-12-04 22:19:28 31 4
gpt4 key购买 nike

我正在构建一个本地 docker 镜像,我想标记它,但我不知道 repository 如何应该为我刚刚在本地构建的 docker 图像填写字段。

甚至可以使用 docker_image 标记本地镜像模块?

最佳答案

似乎 docker_image 有更好的解决方案:

tasks:
- name: build_image
docker_image:
name: test_img:latest # Name of image, may be with repo path.
path: .
state: present
register: image_build

- name: tag_version
docker_image:
name: test_img:latest # Equal to name in build task.
repository: test_img:1.2 # New tag there.
pull: no
state: present
when: image_build.changed

影响:
    $ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
test_img 1.2 ab14e8cce7ef 9 seconds ago 142MB
test_img latest ab14e8cce7ef 9 seconds ago 142MB

也适用于推送到 repo (需要将名称更改为完整的 repo 路径)。

关于image - 如何使用 ansible docker_image 模块标记本地 docker 镜像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38169244/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com