Fix postgres devenv (#49487)

This commit is contained in:
Gabriel MABILLE 2022-06-28 09:12:25 +02:00 committed by GitHub
parent 4b994ca669
commit 849d4a3c56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,12 +3,12 @@
environment:
POSTGRES_USER: grafana
POSTGRES_PASSWORD: password
POSTGRES_DATABASE: grafana
POSTGRES_DB: grafana
ports:
- "5432:5432"
command: postgres -c log_connections=on -c logging_collector=on -c log_destination=stderr -c log_directory=/var/log/postgresql
healthcheck:
test: [ "CMD", "pg_isready", "-q", "-d", "$$POSTGRES_DATABASE", "-U", "$$POSTGRES_USER" ]
test: [ "CMD", "pg_isready", "-q", "-d", "grafana", "-U", "grafana" ]
timeout: 45s
interval: 10s
retries: 10
@ -16,6 +16,7 @@
fake-postgres-data:
image: grafana/fake-data-gen
environment:
FD_SERVER: postgres
FD_DATASOURCE: postgres
FD_PORT: 5432
depends_on: