Estou usando o pipeline de Bitbucket com o PosgreSQL para CI / CD. De acordo com esta documentação, o serviço PostgreSQL foi descrito bitbucket-pipelines.yml
desta maneira:
definitions:
services:
postgres:
image: postgres:9.6-alpine
Funcionou muito bem até agora. Mas todos os meus pipelines mais recentes falharam com o seguinte erro:
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
Como posso corrigir isso? Não houve alterações no bitbucket-pipelines.yml
arquivo, o que poderia ser o motivo desse erro.
fonte