13

请多多包涵。对 Docker 来说很新。

我正在使用CodeDeploy将 Docker 容器(分离)部署到 AWS EC2 注册表。在部署时,在设置一些环境变量等后运行以下命令:

exec docker run -d ${PORTS} -v cache-${CACHE_VOLUME} --env-file $(dirname $0)/docker.env --tty "${IMAGE}:${TAG}"

容器运行在 EC2 容器服务中定位和标记的图像。到目前为止没有问题。

由于这是一个 PHP 应用程序(特别是 Symfony2 应用程序),我通常需要发出以下命令来在部署时执行数据库迁移:

 php app/console doctrine:migrations:migrate --no-interaction

现在,是否可以在“docker run ...”期间运行此命令,同时保持容器运行,或者我是否需要专门为此命令运行另一个容器?

非常感谢!

4

3 回答 3

15

您需要创建入口点。此脚本在容器启动时运行。

entrypoint.sh 文件:

#create or update db
./waitforit.sh <DB_HOST>:<DP_PORT> -t 30
php app/console doctrine:migrations:execute 

# start apache
apache2-foreground

等待它是数据库启动时等待的脚本

于 2017-01-11T13:34:00.747 回答
6

Just leaving this here for the next one that searches for this... ;-)

When using a recent version of Doctrine, there is a pretty handy parameter for this:

php bin/console doctrine:migrations:migrate --no-interaction --allow-no-migration

The "allow-no-migration" parameter instructs doctrine not to throw an exception, when there is nothing to do...

于 2017-03-10T10:43:52.960 回答
1

我这样做:

docker-compose exec [containerID] ./app/console migrations:migrate --no-interaction
于 2017-01-11T13:51:58.790 回答