Saya menggunakan pipa Bitbucket dengan PosgreSQL untuk CI / CD. Menurut dokumentasi ini, layanan PostgreSQL telah dijelaskan dengan bitbucket-pipelines.yml
cara ini:
definitions:
services:
postgres:
image: postgres:9.6-alpine
Itu bekerja dengan baik sampai sekarang. Tetapi semua saluran pipa terbaru saya gagal dengan kesalahan berikut:
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
Bagaimana saya bisa memperbaikinya? Tidak ada perubahan pada bitbucket-pipelines.yml
file yang bisa menjadi alasan kesalahan tersebut ..
sumber