├── DockerCommandCheatSheet.md ├── LAB01-FirstImageFirstContainer.md ├── LAB02-DockerVolume.md ├── LAB03-DockerCompose.md ├── LAB04-DockerStackService.md ├── LAB05-DockerLocalRegistry.md ├── LAB06-DockerTransferringContent.md ├── LAB07-DockerfileForLinuxC++Build.md ├── LAB08-DockerfileForWindowsC++Build.md ├── LAB09-DockerConfiguration.md ├── LAB10-MultiPlatformBuilds.md ├── LAB11-SecurityBestPractices.md ├── LAB12-HealthchecksDockerignore.md ├── LICENSE ├── README.md ├── hands-on-sample-projects ├── flask-app │ ├── Dockerfile │ ├── index.py │ └── requirements.txt ├── full-stack-app │ ├── backend │ │ ├── Dockerfile │ │ ├── app.py │ │ └── requirements.txt │ ├── docker-compose.yaml │ └── frontend │ │ ├── Dockerfile │ │ ├── index.html │ │ ├── index.js │ │ └── package.json └── nginx-html-app │ ├── Dockerfile │ └── nginx_bind_mount │ └── index.html └── labs ├── linux-dockerfile-c++ └── Dockerfile └── windows-dockerfile-c++ └── Dockerfile /DockerCommandCheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/DockerCommandCheatSheet.md -------------------------------------------------------------------------------- /LAB01-FirstImageFirstContainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB01-FirstImageFirstContainer.md -------------------------------------------------------------------------------- /LAB02-DockerVolume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB02-DockerVolume.md -------------------------------------------------------------------------------- /LAB03-DockerCompose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB03-DockerCompose.md -------------------------------------------------------------------------------- /LAB04-DockerStackService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB04-DockerStackService.md -------------------------------------------------------------------------------- /LAB05-DockerLocalRegistry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB05-DockerLocalRegistry.md -------------------------------------------------------------------------------- /LAB06-DockerTransferringContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB06-DockerTransferringContent.md -------------------------------------------------------------------------------- /LAB07-DockerfileForLinuxC++Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB07-DockerfileForLinuxC++Build.md -------------------------------------------------------------------------------- /LAB08-DockerfileForWindowsC++Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB08-DockerfileForWindowsC++Build.md -------------------------------------------------------------------------------- /LAB09-DockerConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB09-DockerConfiguration.md -------------------------------------------------------------------------------- /LAB10-MultiPlatformBuilds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB10-MultiPlatformBuilds.md -------------------------------------------------------------------------------- /LAB11-SecurityBestPractices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB11-SecurityBestPractices.md -------------------------------------------------------------------------------- /LAB12-HealthchecksDockerignore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LAB12-HealthchecksDockerignore.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/README.md -------------------------------------------------------------------------------- /hands-on-sample-projects/flask-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/flask-app/Dockerfile -------------------------------------------------------------------------------- /hands-on-sample-projects/flask-app/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/flask-app/index.py -------------------------------------------------------------------------------- /hands-on-sample-projects/flask-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.3.2 -------------------------------------------------------------------------------- /hands-on-sample-projects/full-stack-app/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/full-stack-app/backend/Dockerfile -------------------------------------------------------------------------------- /hands-on-sample-projects/full-stack-app/backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/full-stack-app/backend/app.py -------------------------------------------------------------------------------- /hands-on-sample-projects/full-stack-app/backend/requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /hands-on-sample-projects/full-stack-app/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/full-stack-app/docker-compose.yaml -------------------------------------------------------------------------------- /hands-on-sample-projects/full-stack-app/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/full-stack-app/frontend/Dockerfile -------------------------------------------------------------------------------- /hands-on-sample-projects/full-stack-app/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/full-stack-app/frontend/index.html -------------------------------------------------------------------------------- /hands-on-sample-projects/full-stack-app/frontend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/full-stack-app/frontend/index.js -------------------------------------------------------------------------------- /hands-on-sample-projects/full-stack-app/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/full-stack-app/frontend/package.json -------------------------------------------------------------------------------- /hands-on-sample-projects/nginx-html-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/nginx-html-app/Dockerfile -------------------------------------------------------------------------------- /hands-on-sample-projects/nginx-html-app/nginx_bind_mount/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/hands-on-sample-projects/nginx-html-app/nginx_bind_mount/index.html -------------------------------------------------------------------------------- /labs/linux-dockerfile-c++/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/labs/linux-dockerfile-c++/Dockerfile -------------------------------------------------------------------------------- /labs/windows-dockerfile-c++/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Docker/HEAD/labs/windows-dockerfile-c++/Dockerfile --------------------------------------------------------------------------------