Tôi đang sử dụng đường dẫn Bitbucket với PosgreSQL cho CI / CD. Theo tài liệu này, dịch vụ PostgreSQL đã được mô tả bitbucket-pipelines.yml
theo cách này:
definitions:
services:
postgres:
image: postgres:9.6-alpine
Nó chỉ hoạt động tốt cho đến bây giờ. Nhưng tất cả các đường ống mới nhất của tôi đều thất bại với lỗi sau:
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
Làm thế nào tôi có thể sửa chữa nó? Không có thay đổi trong bitbucket-pipelines.yml
tập tin có thể là lý do của lỗi đó ..