update configuration docker setup for data platform

This commit is contained in:
jigoong
2026-05-07 17:57:42 +07:00
parent ce949dcc8f
commit 1dba772e62
53 changed files with 6732 additions and 24 deletions

View File

@@ -0,0 +1,5 @@
-- Create Keycloak database
CREATE DATABASE keycloak;
-- Grant privileges to postgres user
GRANT ALL PRIVILEGES ON DATABASE keycloak TO postgres;

View File

@@ -0,0 +1,8 @@
-- Create databases for Airbyte OSS
-- These databases will be used by the Airbyte deployment in 04-ingestion
-- Main Airbyte database
CREATE DATABASE airflow_db;
-- Grant permissions to postgres user
GRANT ALL PRIVILEGES ON DATABASE airflow_db TO postgres;