Estoy usando la canalización de Bitbucket con PosgreSQL para CI / CD. De acuerdo con esta documentación, el servicio PostgreSQL se ha descrito de bitbucket-pipelines.yml
esta manera:
definitions:
services:
postgres:
image: postgres:9.6-alpine
Funcionó bien hasta ahora. Pero todas mis últimas tuberías fallaron con el siguiente error:
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
¿Cómo puedo arreglarlo? No hubo cambios en el bitbucket-pipelines.yml
archivo que podrían ser la razón de tal error.
fuente