执行我的入口点脚本后,容器以 Exit 0 停止。在启动我们的网络服务器的 compose 文件中指定的命令被忽略。
我们使用 docker 和 docker-compose 作为 Rails 应用程序的环境。
入口点脚本:
#! /bin/bash
bundle exec rails assets:clobber
bundle exec rails assets:precompile
bundle exec rake db:exists && bundle exec rake db:migrate || bundle exec rake db:setup
rm -rf /aps/tmp/pids/server.pid
撰写文件:
version: '2'
services:
app:
image: registry.gitlab.com/.../.../master:latest
command: bundle exec rails server
entrypoint: /aps/rails-entrypoint.sh
volumes:
- /srv/app/log/:/app/log
- /srv/app/public/:/app/public
env_file: .env
ports:
- '0.0.0.0:3333:3000'
links:
- apppostgres
apppostgres:
image: postgres
...
volumes:
pgdata:
当我在入口点脚本运行时连接到容器时,我可以看到执行的命令以ps aux
as运行/bin/bash /app/rails-entrypoint.sh bundle exec rails server
。
当我将命令块添加到入口点脚本时,服务器已启动并正在运行,但这也不是它应该如何工作或者?
我该怎么做才能让入口点脚本和命令块正常运行?