Airflow series of tutorials (7) Use docker-compose for Airflow containerized deployment

After building the airflow container with the visualization tool in the previous chapter, although it is very intuitive, in the real intranet environment, there is often no port to map with the Internet, so it is very necessary to know the docker-compose method for airflow containerized deployment


Preface

Docker-compose is used for containerized deployment of ariflow, which is very convenient for one-click startup and runs in local mode


1. Airflow image package

Upload the airflow1.10.6 version of the tar package and related files to the network disk

链接:https://pan.baidu.com/s/15nYNRXv1PqhBXM23br3V9w 
提取码:y1ae 
复制这段内容后打开百度网盘手机App,操作更方便哦

Two, docker-compse file

version: '3.1'
services:
  airflow:
    imag

Guess you like

Origin blog.csdn.net/shujuelin/article/details/114626434