mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-03 23:26:54 +00:00

* Adding the different docker-compose file openmetadata and ingestion * Added two different env files for mysql and postgres * Updated the docker file path * Updated the path of docker folder structure * Fix docker * Updating the PR with necessary changes required --------- Co-authored-by: “Vijay” <“vijay.l@deuexsolutions.com”> Co-authored-by: Akash-Jain <Akash.J@deuexsolutions.com>
8 lines
374 B
SQL
8 lines
374 B
SQL
CREATE DATABASE openmetadata_db;
|
|
CREATE DATABASE airflow_db;
|
|
CREATE USER openmetadata_user WITH PASSWORD 'openmetadata_password';
|
|
CREATE USER airflow_user WITH PASSWORD 'airflow_pass';
|
|
GRANT ALL PRIVILEGES ON DATABASE openmetadata_db TO openmetadata_user;
|
|
GRANT ALL PRIVILEGES ON DATABASE airflow_db TO airflow_user;
|
|
ALTER USER airflow_user SET search_path = public;
|
|
commit; |