gpt4 book ai didi

Bitbucket 管道使用上一步中本地构建的图像

转载 作者:行者123 更新时间:2023-12-02 23:29:03 27 4
gpt4 key购买 nike

如果我想在一个管道步骤中构建一个 docker 镜像,然后在后续步骤中使用它 - 我该怎么做?

例如

default:
- step:
name: Build
image:
script:
- docker build -t imagename:local .
- docker images
- step:
name: Deploy
image:
script:
- docker images

在此示例中,图像在第一步中显示,但在第二步中不显示

最佳答案

您可以将 Docker Save/Load 与 bitbucket 工件结合使用。

示例:

- step:
name: Build docker image
script:
- docker build -t "repo/imagename" .
- docker save --output tmp-image.docker repo/imagename
artifacts:
- tmp-image.docker
- step:
name: Deploy to Test
deployment: test
script:
- docker load --input ./tmp-image.docker
- docker images

来源:Link

关于Bitbucket 管道使用上一步中本地构建的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53348275/

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