Skip to content

Commit 68a5bee

Browse files
author
coder2j
authored
Create README.md
1 parent 576fb2f commit 68a5bee

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+

0 commit comments

Comments
 (0)