Sto usando la pipeline Bitbucket con PosgreSQL per CI / CD. Secondo questa documentazione il servizio PostgreSQL è stato descritto in bitbucket-pipelines.yml
questo modo:
definitions:
services:
postgres:
image: postgres:9.6-alpine
Ha funzionato bene fino ad ora. Ma tutte le mie ultime pipeline sono fallite con il seguente errore:
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
Come posso ripararlo? Non sono state apportate modifiche al bitbucket-pipelines.yml
file che potrebbero essere la ragione di tale errore.