learningpath-docker
learningpath-docker copied to clipboard
Week II Assignment: Saverio Guzzo
Please review my Week II assignment!
My name: Saverio Guzzo My GitHub repository: https://github.com/saveriogzz/docker-workshop Description: docker-compose.yml will spin up two containers - Airflow, a Python application to manage workflow - Postgres, the database that airflow leans on
By default, Airflow uses sqlite as a database, but as sqlite just supports one connection at a time, it is mostly used for development purposes. The volumes mounted in docker compose are - requirements.txt to install additional pip packages - .ssh folder with the security keys, in order to use (e.g.) SSH and SFTP Hooks in Airflow
The Dockerfile was used to build the docker image