Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 1.2 KB

README.md

File metadata and controls

50 lines (29 loc) · 1.2 KB

This Repo was created for the Miuul Workshop Event

Architecture

architecture

Setup Airflow and PostgreSQL with Docker

Note: If Docker is not installed, please visit: docker.com

Start Docker services and open the terminal in the directory where the docker-compose file is located.

Then, run the following commands:

docker-compose up -d --build

docker-compose ps

Expected output:

01_docker_compose_ps

Airflow UI

Go to Airflow UI

  • Username: airflow
  • Password: airflow

02_airflow_ui

Connect to PostgreSQL Database

docker-compose up postgres

  • username: airflow
  • password: airflow
  • host: localhost
  • port: 5433
  • database: postgres

url: 'postgresql+psycopg2://airflow:airflow@localhost:5433/postgres'

Data Source