Commit 85b7ddef by Sofia Papagiannaki Committed by GitHub

Devenv: Fix integration of postgres and fake-data-gen containers (#20329)

* Fix integration of postgres and fake-data-gen containers

This fix introduces the following modifications:
- Upgrades to 2.1 docker-compose file format
- Adds a health check for determining that postgrestest service is healthy
- Modifies the fake-postgres-data service to wait for postgrestest to be
"healthy" before starting.
- Renames postgrestest to postgres
parent 886bad2f
postgrestest: postgres:
image: postgres:${postgres_version} image: postgres:${postgres_version}
environment: environment:
POSTGRES_USER: grafana POSTGRES_USER: grafana
...@@ -7,6 +7,11 @@ ...@@ -7,6 +7,11 @@
ports: ports:
- "5432:5432" - "5432:5432"
command: postgres -c log_connections=on -c logging_collector=on -c log_destination=stderr -c log_directory=/var/log/postgresql 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" ]
timeout: 45s
interval: 10s
retries: 10
fake-postgres-data: fake-postgres-data:
image: grafana/fake-data-gen image: grafana/fake-data-gen
...@@ -14,3 +19,6 @@ ...@@ -14,3 +19,6 @@
environment: environment:
FD_DATASOURCE: postgres FD_DATASOURCE: postgres
FD_PORT: 5432 FD_PORT: 5432
depends_on:
postgres:
condition: service_healthy
version: "2" version: "2.1"
services: services:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment