File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ # airflow-docker
2
+ ## Running apache airflow 2.0 in docker with local executor.
3
+ Here are the steps to take to get airflow 2.0 running with docker on your machine.
4
+ 1 . Clone this repo
5
+ 2 . Create dags, logs and plugins folder inside the project directory
6
+ ``` bash
7
+ mkdir ./dags ./logs ./plugins
8
+ ```
9
+ 3 . Install docker desktop application if you don't have docker running on your machine
10
+ - [ Download Docker Desktop Application for Mac OS] ( https://hub.docker.com/editions/community/docker-ce-desktop-mac )
11
+ - [ Download Docker Desktop Application for Windows] ( https://hub.docker.com/editions/community/docker-ce-desktop-windows )
12
+ 4 . Launch airflow by docker-compose
13
+ ``` bash
14
+ docker-compose up -d
15
+ ```
16
+ 5 . Check the running containers
17
+ ``` bash
18
+ docker ps
19
+ ```
20
+ 6 . Open browser and type http://0.0.0.0:800 to launch the airflow webserver
21
+
You can’t perform that action at this time.
0 commit comments