CI / CD用のPosgreSQLでBitbucketパイプラインを使用しています。このドキュメントによると、PostgreSQLサービスは次のように説明されbitbucket-pipelines.yml
ています。
definitions:
services:
postgres:
image: postgres:9.6-alpine
今までは問題なく動作しました。しかし、最新のパイプラインはすべて次のエラーで失敗しました:
Error: Database is uninitialized and superuser password is not specified.
You must specify POSTGRES_PASSWORD for the superuser. Use
"-e POSTGRES_PASSWORD=password" to set it in "docker run".
You may also use POSTGRES_HOST_AUTH_METHOD=trust to allow all connections
without a password. This is *not* recommended. See PostgreSQL
documentation about "trust":
https://www.postgresql.org/docs/current/auth-trust.html
どうすれば修正できますか?このbitbucket-pipelines.yml
ようなエラーの原因である可能性のあるファイルの変更はありませんでした。