├── .gitignore ├── README.md ├── static ├── compose │ └── Screen Shot 2021-01-17 at 12.17.21.png └── giris │ └── giris-1.png └── uygulamalar ├── ADD-COPY-FARKI └── Dockerfile ├── ARG └── Dockerfile ├── Compose └── intro │ └── docker-compose.yml ├── DockerSecret ├── password.txt └── username.txt ├── DockerStack └── docker-compose.yml ├── Dockerfile-2 ├── Dockerfile └── myapp │ └── app.py ├── Dockerfile-4 └── pythonapp │ ├── Dockerfile │ ├── app.py │ └── requirements.txt ├── Dockerfile-5 ├── Dockerfile └── index.html ├── ENTRYPOINT-CMD-FARKI ├── cmd │ └── Dockerfile └── entrypoint │ └── Dockerfile └── MultiStageBuild ├── Dockerfile └── source └── uygulama.java /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/README.md -------------------------------------------------------------------------------- /static/compose/Screen Shot 2021-01-17 at 12.17.21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/static/compose/Screen Shot 2021-01-17 at 12.17.21.png -------------------------------------------------------------------------------- /static/giris/giris-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/static/giris/giris-1.png -------------------------------------------------------------------------------- /uygulamalar/ADD-COPY-FARKI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/ADD-COPY-FARKI/Dockerfile -------------------------------------------------------------------------------- /uygulamalar/ARG/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/ARG/Dockerfile -------------------------------------------------------------------------------- /uygulamalar/Compose/intro/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/Compose/intro/docker-compose.yml -------------------------------------------------------------------------------- /uygulamalar/DockerSecret/password.txt: -------------------------------------------------------------------------------- 1 | 12345 -------------------------------------------------------------------------------- /uygulamalar/DockerSecret/username.txt: -------------------------------------------------------------------------------- 1 | mebaysan -------------------------------------------------------------------------------- /uygulamalar/DockerStack/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/DockerStack/docker-compose.yml -------------------------------------------------------------------------------- /uygulamalar/Dockerfile-2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/Dockerfile-2/Dockerfile -------------------------------------------------------------------------------- /uygulamalar/Dockerfile-2/myapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/Dockerfile-2/myapp/app.py -------------------------------------------------------------------------------- /uygulamalar/Dockerfile-4/pythonapp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/Dockerfile-4/pythonapp/Dockerfile -------------------------------------------------------------------------------- /uygulamalar/Dockerfile-4/pythonapp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/Dockerfile-4/pythonapp/app.py -------------------------------------------------------------------------------- /uygulamalar/Dockerfile-4/pythonapp/requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /uygulamalar/Dockerfile-5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/Dockerfile-5/Dockerfile -------------------------------------------------------------------------------- /uygulamalar/Dockerfile-5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/Dockerfile-5/index.html -------------------------------------------------------------------------------- /uygulamalar/ENTRYPOINT-CMD-FARKI/cmd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/ENTRYPOINT-CMD-FARKI/cmd/Dockerfile -------------------------------------------------------------------------------- /uygulamalar/ENTRYPOINT-CMD-FARKI/entrypoint/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/ENTRYPOINT-CMD-FARKI/entrypoint/Dockerfile -------------------------------------------------------------------------------- /uygulamalar/MultiStageBuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/MultiStageBuild/Dockerfile -------------------------------------------------------------------------------- /uygulamalar/MultiStageBuild/source/uygulama.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mebaysan/DockerElKitabi/HEAD/uygulamalar/MultiStageBuild/source/uygulama.java --------------------------------------------------------------------------------