2

我正在尝试创建一个通用的 docker 映像,可以与我的所有 Node 应用程序一起使用。我当前的 docker 镜像和逻辑在运行 docker 镜像时从作为命令行 arg 接收的指定 Git 存储库中提取应用程序的源代码。这是 docker 文件和入口点逻辑的代码:

Dockerfile:

# Generic Docker Image for Running Node app from Git Repository
FROM    node:0.10.33-slim
ENV NODE_ENV production

# Add script to pull Node app from Git and run the app
COPY docker-node-entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

EXPOSE  8080
CMD ["--help"]

入口点脚本:

#!/bin/bash
set -e
# Run the command passed in if it isn't to start a node app
if [ "$1" != 'node-server' ]; then
   exec "$@"
fi
# Logic for pulling the node app and starting it
cd /usr/src
# try to remove the repo if it already exists
rm -rf node-app; true
echo "Pulling Node app's source from $2"
git clone $2 node-app
cd node-app
# Check if we should be running a specific commit from the git repo
if [ ! -z "$3" ]; then
  echo "Changing to commit $3"
  git checkout $3
fi
npm install
echo "Starting the app"
exec node .

我知道 Docker 建议使用 exec 命令在容器停止并且超时时不要通过 SIGKILL 杀死您的进程?由于我没有使用 exec,当容器停止时运行 git clone 命令和 npm install 命令是否有任何顾虑?有没有办法在我的入口点脚本中解决这个问题?

4

0 回答 0