gitextract_5i3fxtl4/ ├── .gitignore ├── .phlow ├── CHEATSHEET.md ├── LICENSE ├── README.md ├── labs/ │ ├── 00-getting-started.md │ ├── 01-hello-world.md │ ├── 02-running-images.md │ ├── 03-deletion.md │ ├── 04-port-forward.md │ ├── 05-executing.md │ ├── 06-volumes.md │ ├── 07-building-an-image.md │ ├── 08-multi-stage-builds.md │ ├── 09-multi-container.md │ ├── README.md │ ├── advanced/ │ │ ├── containers-on-default-bridge.md │ │ ├── containers-on-docker-compose-network.md │ │ ├── containers-on-host-network.md │ │ ├── containers-on-none-network.md │ │ ├── containers-on-user-defined-bridge.md │ │ ├── joining-network-and-process-namespace-of-existing-containers.md │ │ ├── systemd/ │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ └── docker-compose.yml │ │ └── traefik/ │ │ ├── example1/ │ │ │ ├── README.md │ │ │ ├── docker-compose.yml │ │ │ └── traefik.toml │ │ ├── example2/ │ │ │ ├── README.md │ │ │ ├── proxy/ │ │ │ │ ├── docker-compose.yml │ │ │ │ └── traefik.toml │ │ │ └── web/ │ │ │ └── docker-compose.yml │ │ └── example3/ │ │ ├── acme.json │ │ ├── docker-compose.yml │ │ └── traefik.toml │ ├── building-an-image/ │ │ ├── Dockerfile │ │ ├── app.py │ │ └── requirements.txt │ ├── docker-compose/ │ │ ├── .gitignore │ │ ├── 00-getting-started.md │ │ ├── 01-hello-world.md │ │ ├── 02-port-forward.md │ │ ├── 03-volumes.md │ │ ├── 04-build-image.md │ │ └── bottle/ │ │ ├── Dockerfile │ │ ├── app.py │ │ └── requirements.txt │ ├── exercise-template.md │ ├── extra-exercises/ │ │ ├── image-security.md │ │ ├── nginx/ │ │ │ ├── docker-compose.yml │ │ │ ├── html1/ │ │ │ │ └── index.html │ │ │ ├── html2/ │ │ │ │ └── index.html │ │ │ ├── network.md │ │ │ └── nginx/ │ │ │ └── nginx.vh.default.conf │ │ └── secrets.md │ ├── image-best-practices.md │ ├── multi-container/ │ │ ├── docker-compose.yaml │ │ └── docker-compose_final.yaml │ ├── multi-stage-build/ │ │ ├── Dockerfile │ │ ├── go.mod │ │ └── hello.go │ ├── sharing-images.md │ ├── volumes/ │ │ └── index.html │ └── windows-docker/ │ ├── win1-windows-on-linux.md │ ├── win2-windows-on-windows.md │ └── win3-common-commands.md └── trainer/ ├── README.md ├── examples/ │ ├── basic-compose/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── app.py │ │ ├── docker-compose.yml │ │ └── requirements.txt │ ├── building-flask-on-different-os/ │ │ ├── Dockerfile │ │ ├── Dockerfile-python │ │ ├── Dockerfile-python-alpine │ │ ├── README.md │ │ ├── app.py │ │ ├── build.sh │ │ └── requirements.txt │ ├── ci-tools/ │ │ └── README.md │ ├── multi-stage-golang/ │ │ ├── Dockerfile │ │ ├── README.md │ │ └── hello.go │ ├── multistage-java/ │ │ ├── Dockerfile │ │ ├── Dockerfile-multistage │ │ ├── README.md │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── micronaut-cli.yml │ │ ├── settings.gradle │ │ └── src/ │ │ ├── main/ │ │ │ ├── java/ │ │ │ │ └── example/ │ │ │ │ └── micronaut/ │ │ │ │ ├── Application.java │ │ │ │ ├── HelloController.java │ │ │ │ ├── ReadyController.java │ │ │ │ └── RootController.java │ │ │ └── resources/ │ │ │ ├── application.yml │ │ │ └── logback.xml │ │ └── test/ │ │ └── java/ │ │ └── example/ │ │ └── micronaut/ │ │ └── HelloControllerTest.java │ ├── nextcloud/ │ │ ├── README.md │ │ └── docker-compose.yml │ ├── scratch/ │ │ ├── Dockerfile │ │ ├── README.md │ │ └── emptyfile │ ├── security-run-as-root/ │ │ └── README.md │ └── volume-python/ │ ├── README.md │ └── main.py └── experiments/ └── unicode/ ├── README.md ├── Файлдокера └── ఖాళీగా