gpt4 book ai didi

node.js - 是否可以在docker容器内运行shell脚本然后运行node app.js

转载 作者:太空宇宙 更新时间:2023-11-03 21:56:22 25 4
gpt4 key购买 nike

我必须运行一些 shell 脚本,在 Dockerfile 中调用 node app.js 命令之前创建一些证书。我该怎么做才能使其在运行 shell 脚本后不会退出并继续运行 node app.js Web 应用程序。

最佳答案

我过去所做的是将 Dockerfile 中定义的入口点作为 shell 脚本,然后从该脚本中运行 node 命令。

所以在我的 Dockerfile 中我有这个 -

ENTRYPOINT ["./docker-start.sh"]

我的 docker-start.sh 脚本包含以下内容:

#! /bin/bash

# Initialization logic can go here

echo "Starting node..."
node start.js $* # The $* allows me to pass command line arguments that were passed to the docker run command.

# Cleanup logic can go here

关于node.js - 是否可以在docker容器内运行shell脚本然后运行node app.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39595806/

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