J'utilise le pipeline Bitbucket avec PosgreSQL pour CI / CD. Selon cette documentation, le service PostgreSQL a été décrit de bitbucket-pipelines.yml
cette manière:
definitions:
services:
postgres:
image: postgres:9.6-alpine
Cela a très bien fonctionné jusqu'à présent. Mais tous mes derniers pipelines ont échoué avec l'erreur suivante:
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
Comment puis-je le réparer? Il n'y a eu aucun changement dans le bitbucket-pipelines.yml
fichier qui pourrait être la raison d'une telle erreur.
la source