Używam potoku Bitbucket z PosgreSQL dla CI / CD. Zgodnie z tą dokumentacją usługa PostgreSQL została opisana w bitbucket-pipelines.yml
następujący sposób:
definitions:
services:
postgres:
image: postgres:9.6-alpine
Do tej pory działało dobrze. Ale wszystkie moje najnowsze potoki nie powiodły się z następującym błędem:
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
Jak mogę to naprawić? W bitbucket-pipelines.yml
pliku nie było żadnych zmian , które mogłyby być przyczyną takiego błędu.
źródło