gitextract_4g2qhtl8/ ├── README.md ├── commands.md ├── examples/ │ ├── first-docker-file/ │ │ ├── Dockerfile │ │ └── app.py │ ├── golang-multi-stage-docker-build/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── calculator.go │ │ └── dockerfile-without-multistage/ │ │ ├── Dockerfile │ │ └── calculator.go │ └── python-web-app/ │ ├── Dockerfile │ ├── devops/ │ │ ├── db.sqlite3 │ │ ├── demo/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations/ │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ └── demo_site.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── devops/ │ │ │ ├── __init__.py │ │ │ ├── asgi.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ └── manage.py │ └── requirements.txt ├── networking.md └── volumes.md