Я використовую конвеєр Bitbucket з PosgreSQL для CI / CD. Відповідно до цієї документації служба PostgreSQL була описана bitbucket-pipelines.yml
таким чином:
definitions:
services:
postgres:
image: postgres:9.6-alpine
До цього часу це працювало чудово. Але всі мої останні трубопроводи не вдалися із наступною помилкою:
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
Як я можу це виправити? У bitbucket-pipelines.yml
файлі не було змін, які могли б бути причиною такої помилки.