Я использую конвейер Bitbucket с PosgreSQL для CI / CD. Согласно этой документации сервис 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
файле не было изменений, которые могли быть причиной такой ошибки.
источник