├── Question-1 ├── Alternative-1 │ ├── docker-compose.yml │ └── sql │ │ └── V0001__InitialSetup.sql ├── Alternative-2 │ ├── docker-compose.yml │ └── sql │ │ └── V0001__InitialSetup.sql ├── Alternative-3 │ ├── docker-compose.yml │ ├── sql │ │ └── V0001__InitialSetup.sql │ └── wait-for-it.sh └── Problem │ ├── docker-compose.yml │ └── sql │ └── V0001__InitialSetup.sql ├── Question-2 ├── Alternative-1 │ └── Demo │ │ ├── Dockerfile-Nginx │ │ ├── Makefile │ │ ├── docker-compose.yml │ │ ├── haproxy.cfg │ │ ├── init-wrapper.sh │ │ └── site │ │ └── index.html ├── Alternative-2 │ └── Demo │ │ ├── Dockerfile-Nginx │ │ ├── Makefile │ │ ├── docker-compose.yml │ │ ├── haproxy.cfg │ │ ├── init-wrapper.sh │ │ └── site │ │ └── index.html ├── NoProblem │ └── Demo │ │ ├── Dockerfile-Nginx │ │ ├── Makefile │ │ ├── docker-compose.yml │ │ ├── haproxy.cfg │ │ └── site │ │ └── index.html └── Problem │ └── Demo │ ├── Dockerfile-Nginx │ ├── Makefile │ ├── docker-compose.yml │ ├── haproxy.cfg │ ├── init-wrapper.sh │ └── site │ └── index.html ├── Question-3 └── Demo │ ├── data │ ├── file-0.txt │ ├── file-1.txt │ ├── file-2.txt │ ├── file-3.txt │ └── file-4.txt │ ├── docker-compose.yml │ └── program │ └── artificial-intelligence.sh └── Question-4 └── Demo ├── docker-compose.yml └── program └── random-file-generator.sh /Question-1/Alternative-1/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-1/Alternative-1/docker-compose.yml -------------------------------------------------------------------------------- /Question-1/Alternative-1/sql/V0001__InitialSetup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-1/Alternative-1/sql/V0001__InitialSetup.sql -------------------------------------------------------------------------------- /Question-1/Alternative-2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-1/Alternative-2/docker-compose.yml -------------------------------------------------------------------------------- /Question-1/Alternative-2/sql/V0001__InitialSetup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-1/Alternative-2/sql/V0001__InitialSetup.sql -------------------------------------------------------------------------------- /Question-1/Alternative-3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-1/Alternative-3/docker-compose.yml -------------------------------------------------------------------------------- /Question-1/Alternative-3/sql/V0001__InitialSetup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-1/Alternative-3/sql/V0001__InitialSetup.sql -------------------------------------------------------------------------------- /Question-1/Alternative-3/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-1/Alternative-3/wait-for-it.sh -------------------------------------------------------------------------------- /Question-1/Problem/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-1/Problem/docker-compose.yml -------------------------------------------------------------------------------- /Question-1/Problem/sql/V0001__InitialSetup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-1/Problem/sql/V0001__InitialSetup.sql -------------------------------------------------------------------------------- /Question-2/Alternative-1/Demo/Dockerfile-Nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-1/Demo/Dockerfile-Nginx -------------------------------------------------------------------------------- /Question-2/Alternative-1/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-1/Demo/Makefile -------------------------------------------------------------------------------- /Question-2/Alternative-1/Demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-1/Demo/docker-compose.yml -------------------------------------------------------------------------------- /Question-2/Alternative-1/Demo/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-1/Demo/haproxy.cfg -------------------------------------------------------------------------------- /Question-2/Alternative-1/Demo/init-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-1/Demo/init-wrapper.sh -------------------------------------------------------------------------------- /Question-2/Alternative-1/Demo/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-1/Demo/site/index.html -------------------------------------------------------------------------------- /Question-2/Alternative-2/Demo/Dockerfile-Nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-2/Demo/Dockerfile-Nginx -------------------------------------------------------------------------------- /Question-2/Alternative-2/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-2/Demo/Makefile -------------------------------------------------------------------------------- /Question-2/Alternative-2/Demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-2/Demo/docker-compose.yml -------------------------------------------------------------------------------- /Question-2/Alternative-2/Demo/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-2/Demo/haproxy.cfg -------------------------------------------------------------------------------- /Question-2/Alternative-2/Demo/init-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-2/Demo/init-wrapper.sh -------------------------------------------------------------------------------- /Question-2/Alternative-2/Demo/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Alternative-2/Demo/site/index.html -------------------------------------------------------------------------------- /Question-2/NoProblem/Demo/Dockerfile-Nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/NoProblem/Demo/Dockerfile-Nginx -------------------------------------------------------------------------------- /Question-2/NoProblem/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/NoProblem/Demo/Makefile -------------------------------------------------------------------------------- /Question-2/NoProblem/Demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/NoProblem/Demo/docker-compose.yml -------------------------------------------------------------------------------- /Question-2/NoProblem/Demo/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/NoProblem/Demo/haproxy.cfg -------------------------------------------------------------------------------- /Question-2/NoProblem/Demo/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/NoProblem/Demo/site/index.html -------------------------------------------------------------------------------- /Question-2/Problem/Demo/Dockerfile-Nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Problem/Demo/Dockerfile-Nginx -------------------------------------------------------------------------------- /Question-2/Problem/Demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Problem/Demo/Makefile -------------------------------------------------------------------------------- /Question-2/Problem/Demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Problem/Demo/docker-compose.yml -------------------------------------------------------------------------------- /Question-2/Problem/Demo/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Problem/Demo/haproxy.cfg -------------------------------------------------------------------------------- /Question-2/Problem/Demo/init-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Problem/Demo/init-wrapper.sh -------------------------------------------------------------------------------- /Question-2/Problem/Demo/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-2/Problem/Demo/site/index.html -------------------------------------------------------------------------------- /Question-3/Demo/data/file-0.txt: -------------------------------------------------------------------------------- 1 | Content 0 2 | -------------------------------------------------------------------------------- /Question-3/Demo/data/file-1.txt: -------------------------------------------------------------------------------- 1 | Content 1 2 | -------------------------------------------------------------------------------- /Question-3/Demo/data/file-2.txt: -------------------------------------------------------------------------------- 1 | Content 2 2 | -------------------------------------------------------------------------------- /Question-3/Demo/data/file-3.txt: -------------------------------------------------------------------------------- 1 | Content 3 2 | -------------------------------------------------------------------------------- /Question-3/Demo/data/file-4.txt: -------------------------------------------------------------------------------- 1 | Content 4 2 | -------------------------------------------------------------------------------- /Question-3/Demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-3/Demo/docker-compose.yml -------------------------------------------------------------------------------- /Question-3/Demo/program/artificial-intelligence.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-3/Demo/program/artificial-intelligence.sh -------------------------------------------------------------------------------- /Question-4/Demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-4/Demo/docker-compose.yml -------------------------------------------------------------------------------- /Question-4/Demo/program/random-file-generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokhansengun/Docker-Tips-with-QA/HEAD/Question-4/Demo/program/random-file-generator.sh --------------------------------------------------------------------------------