gpt4 book ai didi

node.js - 容器不尊重进程的退出状态

转载 作者:太空宇宙 更新时间:2023-11-04 01:23:55 24 4
gpt4 key购买 nike

我对如何将容器内进程的退出代码传递给 docker 感到困惑。我有一个运行 npm run 脚本的容器。npm run 脚本失败,退出状态为 1,但退出状态似乎没有传递给 docker 进程本身,因为 Bamboo 将构建任务标记为成功。

30-Sep-2019 15:43:53    npm ERR! Exit status 1
30-Sep-2019 15:43:53 npm ERR!
30-Sep-2019 15:43:53 npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
30-Sep-2019 15:43:53
30-Sep-2019 15:43:53 npm ERR! A complete log of this run can be found in:
30-Sep-2019 15:43:53 npm ERR! /root/.npm/_logs/2019-09-30T13_43_53_321Z-debug.log
30-Sep-2019 15:43:54 Stopping containers
30-Sep-2019 15:43:54 b3efbe0710cc
30-Sep-2019 15:43:54 Removing containers
30-Sep-2019 15:43:55 b3efbe0710cc
30-Sep-2019 15:43:55 Finished task 'Script' with result: Success

容器通过 docker run 命令启动。

docker run -e GIT_REPO=${bamboo_repository_git_repositoryUrl} -e RELEASE_VERSION=${bamboo.release_version} wc-release:1.0.0

其中发布容器的dockerfile是这样的:

FROM node:12

ENV RELEASE_VERSION=${VERSION}
ENV GIT_REPO=${REPO}

ENV http_proxy=http://***
ENV https_proxy=http://***

COPY .npmrc /root/.npmrc
COPY .gitconfig /root/.gitconfig
COPY .git-credentials /root/.git-credentials

WORKDIR /home/node/app

ENTRYPOINT git clone ${GIT_REPO} /home/node/app && npm install && npm run release:prepare && npm run release:testless -- ${RELEASE_VERSION}

有什么建议吗?提前致谢。问候

最佳答案

Bamboo 需要发送显式退出代码,这可以通过在 bash 脚本中使用 set -e 来实现。你会得到类似这样的东西:

#! /usr/bin/env bash
set -e
docker run -e GIT_REPO=${bamboo_repository_git_repositoryUrl} -e RELEASE_VERSION=${bamboo.release_version} wc-release:1.0.0

关于node.js - 容器不尊重进程的退出状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58236684/

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