├── LICENSE ├── LabsAccessAndEnvironments.md ├── Readme.md ├── chapter1 └── Readme.md ├── chapter11 ├── Readme.md ├── middlewaredb.stack.fixed.yml └── middlewaredb.stack.yml ├── chapter12 ├── Readme.md ├── colors.stack.yaml └── default-color.stack.yaml ├── chapter13 └── Readme.md ├── chapter2 ├── Dockerfile.application ├── Dockerfile.cache ├── Dockerfile.cache.step6 ├── Dockerfile.cache.step8 ├── Dockerfile.chapter2.lab2 ├── Dockerfile.chapter2.lab2-2 ├── Dockerfile.multistage ├── Dockerfile.nginx ├── Dockerfile.nginx-dev ├── Readme.md └── helloworld.c ├── chapter3 └── Readme.md ├── chapter4 ├── Dockerfile ├── Readme.md ├── app.py ├── requirements.txt └── templates │ └── index.html ├── chapter5 ├── Readme.md ├── app │ ├── .gitignore │ ├── Dockerfile │ ├── app.js │ ├── index.html │ └── package.json ├── docker-compose.loadbalancer.yaml ├── docker-compose.multicolor.yaml ├── docker-compose.random.yaml ├── docker-compose.red.yaml ├── lb │ ├── Dockerfile │ ├── entrypoint.sh │ └── nginx.conf └── simplest-lab │ ├── docker-compose.dev.yaml │ ├── docker-compose.yaml │ ├── simplestapp │ ├── Dockerfile │ ├── README.md │ ├── dbconfig.json │ ├── package.json │ ├── reset.html │ ├── simplestapp.html │ └── simplestapp.js │ ├── simplestdb │ ├── Dockerfile │ ├── Dockerfile.scratch │ ├── docker-entrypoint-initdb.d │ │ └── init-demo.sh │ └── docker-entrypoint.sh │ └── simplestlb │ ├── Dockerfile │ ├── Dockerfile.custom │ ├── README.md │ ├── entrypoint.sh │ └── nginx.conf ├── chapter6 ├── Dockerfile └── Readme.md ├── chapter8 ├── Readme.md ├── create-docker-database.sh └── postgres-stack.yaml ├── chapter9 ├── Readme.md ├── blue-deployment-simple.yaml ├── blue-replicaset-simple.yaml ├── blue-service-nodeport.yaml ├── blue-service-simple.yaml ├── nginx-lab │ ├── .dockerignore │ ├── Dockerfile │ ├── Readm.md │ ├── default.conf │ ├── entrypoint.sh │ ├── index.html │ └── yaml │ │ ├── webserver.configmap.yaml │ │ ├── webserver.deployment.yaml │ │ ├── webserver.persistentvolume.yaml │ │ ├── webserver.persistentvolumeclaim.yaml │ │ ├── webserver.secret.yaml │ │ └── webserver.service.yaml ├── nginx-sample │ ├── Dockerfile │ ├── default.conf │ ├── default.test │ ├── entrypoint.sh │ ├── index.html │ └── nginx.conf └── rgb-colors-full-stack.yaml ├── environments ├── enterprise │ ├── .gitignore │ ├── Readme.md │ ├── Vagrantfile │ └── config.yml ├── kubernetes │ ├── .gitignore │ ├── Readme.md │ ├── Vagrantfile │ └── config.yml ├── standalone │ ├── .gitignore │ ├── Readme.md │ ├── Vagrantfile │ ├── config.yml │ └── install_requirements.sh └── swarm │ ├── .gitignore │ ├── Readme.md │ ├── Vagrantfile │ └── config.yml └── images ├── DTR_AddLicense.png ├── DTR_DBA_promo.png ├── DTR_DBA_promo1.png ├── DTR_DBA_promo2.png ├── DTR_DBA_promo3.png ├── DTR_DBA_promoted.png ├── DTR_DBA_repos.png ├── DTR_DBA_repos1.png ├── DTR_DBA_repos2.png ├── DTR_DBA_repos3.png ├── DTR_Middleware_promoted.png ├── DTR_Middleware_repos.png ├── DTR_Middleware_repos1.png ├── DTR_Scanning.png ├── DTR_certificates_warning.png ├── DTR_labs-busybox1.png ├── DTR_labs-busybox2.png ├── DTR_labs-busybox3.png ├── DTR_labs_repos.png ├── DTR_login.png ├── DTR_login_license.png ├── DTR_main.png ├── DTR_organizations.png ├── DTR_organizations_createrepo.png ├── DTR_organizations_createrepo1.png ├── DTR_organizations_createrepo2.png ├── Interlock_admin.png ├── Interlock_default_stack.png ├── Interlock_enabled.png ├── UCP_AccessControl_Users.png ├── UCP_AddUserToTeam_1.png ├── UCP_AddUserToTeam_2.png ├── UCP_AddUserToTeam_done.png ├── UCP_Client_Bundle.png ├── UCP_Collections.png ├── UCP_CreateCollection.png ├── UCP_CreateGrant.png ├── UCP_CreateGrant_DBA.png ├── UCP_CreateGrant_all.png ├── UCP_CreateOrganization.png ├── UCP_CreateTeams_dba.png ├── UCP_CreateTeams_done.png ├── UCP_CreateTeams_labs.png ├── UCP_CreateUsers.png ├── UCP_Dashboard.png ├── UCP_Login.png ├── UCP_Login_License.png ├── UCP_Warning.png ├── chapter3.png └── chapter4.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/LICENSE -------------------------------------------------------------------------------- /LabsAccessAndEnvironments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/LabsAccessAndEnvironments.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/Readme.md -------------------------------------------------------------------------------- /chapter1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter1/Readme.md -------------------------------------------------------------------------------- /chapter11/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter11/Readme.md -------------------------------------------------------------------------------- /chapter11/middlewaredb.stack.fixed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter11/middlewaredb.stack.fixed.yml -------------------------------------------------------------------------------- /chapter11/middlewaredb.stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter11/middlewaredb.stack.yml -------------------------------------------------------------------------------- /chapter12/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter12/Readme.md -------------------------------------------------------------------------------- /chapter12/colors.stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter12/colors.stack.yaml -------------------------------------------------------------------------------- /chapter12/default-color.stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter12/default-color.stack.yaml -------------------------------------------------------------------------------- /chapter13/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter13/Readme.md -------------------------------------------------------------------------------- /chapter2/Dockerfile.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter2/Dockerfile.application -------------------------------------------------------------------------------- /chapter2/Dockerfile.cache: -------------------------------------------------------------------------------- 1 | FROM alpine:latest 2 | RUN echo "hello world" -------------------------------------------------------------------------------- /chapter2/Dockerfile.cache.step6: -------------------------------------------------------------------------------- 1 | FROM alpine:latest 2 | RUN echo "hello world" -------------------------------------------------------------------------------- /chapter2/Dockerfile.cache.step8: -------------------------------------------------------------------------------- 1 | FROM alpine:latest 2 | RUN echo "hello world" -------------------------------------------------------------------------------- /chapter2/Dockerfile.chapter2.lab2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter2/Dockerfile.chapter2.lab2 -------------------------------------------------------------------------------- /chapter2/Dockerfile.chapter2.lab2-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter2/Dockerfile.chapter2.lab2-2 -------------------------------------------------------------------------------- /chapter2/Dockerfile.multistage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter2/Dockerfile.multistage -------------------------------------------------------------------------------- /chapter2/Dockerfile.nginx: -------------------------------------------------------------------------------- 1 | FROM nginx:alpine 2 | RUN apk update -q -------------------------------------------------------------------------------- /chapter2/Dockerfile.nginx-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter2/Dockerfile.nginx-dev -------------------------------------------------------------------------------- /chapter2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter2/Readme.md -------------------------------------------------------------------------------- /chapter2/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter2/helloworld.c -------------------------------------------------------------------------------- /chapter3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter3/Readme.md -------------------------------------------------------------------------------- /chapter4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter4/Dockerfile -------------------------------------------------------------------------------- /chapter4/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter4/Readme.md -------------------------------------------------------------------------------- /chapter4/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter4/app.py -------------------------------------------------------------------------------- /chapter4/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask -------------------------------------------------------------------------------- /chapter4/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter4/templates/index.html -------------------------------------------------------------------------------- /chapter5/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/Readme.md -------------------------------------------------------------------------------- /chapter5/app/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode-upload.json 2 | -------------------------------------------------------------------------------- /chapter5/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/app/Dockerfile -------------------------------------------------------------------------------- /chapter5/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/app/app.js -------------------------------------------------------------------------------- /chapter5/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/app/index.html -------------------------------------------------------------------------------- /chapter5/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/app/package.json -------------------------------------------------------------------------------- /chapter5/docker-compose.loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/docker-compose.loadbalancer.yaml -------------------------------------------------------------------------------- /chapter5/docker-compose.multicolor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/docker-compose.multicolor.yaml -------------------------------------------------------------------------------- /chapter5/docker-compose.random.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/docker-compose.random.yaml -------------------------------------------------------------------------------- /chapter5/docker-compose.red.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/docker-compose.red.yaml -------------------------------------------------------------------------------- /chapter5/lb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/lb/Dockerfile -------------------------------------------------------------------------------- /chapter5/lb/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/lb/entrypoint.sh -------------------------------------------------------------------------------- /chapter5/lb/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/lb/nginx.conf -------------------------------------------------------------------------------- /chapter5/simplest-lab/docker-compose.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/docker-compose.dev.yaml -------------------------------------------------------------------------------- /chapter5/simplest-lab/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/docker-compose.yaml -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestapp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestapp/Dockerfile -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestapp/README.md -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestapp/dbconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestapp/dbconfig.json -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestapp/package.json -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestapp/reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestapp/reset.html -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestapp/simplestapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestapp/simplestapp.html -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestapp/simplestapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestapp/simplestapp.js -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestdb/Dockerfile -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestdb/Dockerfile.scratch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestdb/Dockerfile.scratch -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestdb/docker-entrypoint-initdb.d/init-demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestdb/docker-entrypoint-initdb.d/init-demo.sh -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestdb/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestdb/docker-entrypoint.sh -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestlb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestlb/Dockerfile -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestlb/Dockerfile.custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestlb/Dockerfile.custom -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestlb/README.md: -------------------------------------------------------------------------------- 1 | # docker-simple-dnsrrlb 2 | -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestlb/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestlb/entrypoint.sh -------------------------------------------------------------------------------- /chapter5/simplest-lab/simplestlb/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter5/simplest-lab/simplestlb/nginx.conf -------------------------------------------------------------------------------- /chapter6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter6/Dockerfile -------------------------------------------------------------------------------- /chapter6/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter6/Readme.md -------------------------------------------------------------------------------- /chapter8/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter8/Readme.md -------------------------------------------------------------------------------- /chapter8/create-docker-database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter8/create-docker-database.sh -------------------------------------------------------------------------------- /chapter8/postgres-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter8/postgres-stack.yaml -------------------------------------------------------------------------------- /chapter9/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/Readme.md -------------------------------------------------------------------------------- /chapter9/blue-deployment-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/blue-deployment-simple.yaml -------------------------------------------------------------------------------- /chapter9/blue-replicaset-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/blue-replicaset-simple.yaml -------------------------------------------------------------------------------- /chapter9/blue-service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/blue-service-nodeport.yaml -------------------------------------------------------------------------------- /chapter9/blue-service-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/blue-service-simple.yaml -------------------------------------------------------------------------------- /chapter9/nginx-lab/.dockerignore: -------------------------------------------------------------------------------- 1 | yaml 2 | -------------------------------------------------------------------------------- /chapter9/nginx-lab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/Dockerfile -------------------------------------------------------------------------------- /chapter9/nginx-lab/Readm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/Readm.md -------------------------------------------------------------------------------- /chapter9/nginx-lab/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/default.conf -------------------------------------------------------------------------------- /chapter9/nginx-lab/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/entrypoint.sh -------------------------------------------------------------------------------- /chapter9/nginx-lab/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/index.html -------------------------------------------------------------------------------- /chapter9/nginx-lab/yaml/webserver.configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/yaml/webserver.configmap.yaml -------------------------------------------------------------------------------- /chapter9/nginx-lab/yaml/webserver.deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/yaml/webserver.deployment.yaml -------------------------------------------------------------------------------- /chapter9/nginx-lab/yaml/webserver.persistentvolume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/yaml/webserver.persistentvolume.yaml -------------------------------------------------------------------------------- /chapter9/nginx-lab/yaml/webserver.persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/yaml/webserver.persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /chapter9/nginx-lab/yaml/webserver.secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/yaml/webserver.secret.yaml -------------------------------------------------------------------------------- /chapter9/nginx-lab/yaml/webserver.service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-lab/yaml/webserver.service.yaml -------------------------------------------------------------------------------- /chapter9/nginx-sample/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-sample/Dockerfile -------------------------------------------------------------------------------- /chapter9/nginx-sample/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-sample/default.conf -------------------------------------------------------------------------------- /chapter9/nginx-sample/default.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-sample/default.test -------------------------------------------------------------------------------- /chapter9/nginx-sample/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-sample/entrypoint.sh -------------------------------------------------------------------------------- /chapter9/nginx-sample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-sample/index.html -------------------------------------------------------------------------------- /chapter9/nginx-sample/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/nginx-sample/nginx.conf -------------------------------------------------------------------------------- /chapter9/rgb-colors-full-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/chapter9/rgb-colors-full-stack.yaml -------------------------------------------------------------------------------- /environments/enterprise/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/enterprise/.gitignore -------------------------------------------------------------------------------- /environments/enterprise/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/enterprise/Readme.md -------------------------------------------------------------------------------- /environments/enterprise/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/enterprise/Vagrantfile -------------------------------------------------------------------------------- /environments/enterprise/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/enterprise/config.yml -------------------------------------------------------------------------------- /environments/kubernetes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/kubernetes/.gitignore -------------------------------------------------------------------------------- /environments/kubernetes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/kubernetes/Readme.md -------------------------------------------------------------------------------- /environments/kubernetes/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/kubernetes/Vagrantfile -------------------------------------------------------------------------------- /environments/kubernetes/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/kubernetes/config.yml -------------------------------------------------------------------------------- /environments/standalone/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | -------------------------------------------------------------------------------- /environments/standalone/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/standalone/Readme.md -------------------------------------------------------------------------------- /environments/standalone/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/standalone/Vagrantfile -------------------------------------------------------------------------------- /environments/standalone/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/standalone/config.yml -------------------------------------------------------------------------------- /environments/standalone/install_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/standalone/install_requirements.sh -------------------------------------------------------------------------------- /environments/swarm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/swarm/.gitignore -------------------------------------------------------------------------------- /environments/swarm/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/swarm/Readme.md -------------------------------------------------------------------------------- /environments/swarm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/swarm/Vagrantfile -------------------------------------------------------------------------------- /environments/swarm/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/environments/swarm/config.yml -------------------------------------------------------------------------------- /images/DTR_AddLicense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_AddLicense.png -------------------------------------------------------------------------------- /images/DTR_DBA_promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_DBA_promo.png -------------------------------------------------------------------------------- /images/DTR_DBA_promo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_DBA_promo1.png -------------------------------------------------------------------------------- /images/DTR_DBA_promo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_DBA_promo2.png -------------------------------------------------------------------------------- /images/DTR_DBA_promo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_DBA_promo3.png -------------------------------------------------------------------------------- /images/DTR_DBA_promoted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_DBA_promoted.png -------------------------------------------------------------------------------- /images/DTR_DBA_repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_DBA_repos.png -------------------------------------------------------------------------------- /images/DTR_DBA_repos1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_DBA_repos1.png -------------------------------------------------------------------------------- /images/DTR_DBA_repos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_DBA_repos2.png -------------------------------------------------------------------------------- /images/DTR_DBA_repos3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_DBA_repos3.png -------------------------------------------------------------------------------- /images/DTR_Middleware_promoted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_Middleware_promoted.png -------------------------------------------------------------------------------- /images/DTR_Middleware_repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_Middleware_repos.png -------------------------------------------------------------------------------- /images/DTR_Middleware_repos1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_Middleware_repos1.png -------------------------------------------------------------------------------- /images/DTR_Scanning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_Scanning.png -------------------------------------------------------------------------------- /images/DTR_certificates_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_certificates_warning.png -------------------------------------------------------------------------------- /images/DTR_labs-busybox1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_labs-busybox1.png -------------------------------------------------------------------------------- /images/DTR_labs-busybox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_labs-busybox2.png -------------------------------------------------------------------------------- /images/DTR_labs-busybox3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_labs-busybox3.png -------------------------------------------------------------------------------- /images/DTR_labs_repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_labs_repos.png -------------------------------------------------------------------------------- /images/DTR_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_login.png -------------------------------------------------------------------------------- /images/DTR_login_license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_login_license.png -------------------------------------------------------------------------------- /images/DTR_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_main.png -------------------------------------------------------------------------------- /images/DTR_organizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_organizations.png -------------------------------------------------------------------------------- /images/DTR_organizations_createrepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_organizations_createrepo.png -------------------------------------------------------------------------------- /images/DTR_organizations_createrepo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_organizations_createrepo1.png -------------------------------------------------------------------------------- /images/DTR_organizations_createrepo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/DTR_organizations_createrepo2.png -------------------------------------------------------------------------------- /images/Interlock_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/Interlock_admin.png -------------------------------------------------------------------------------- /images/Interlock_default_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/Interlock_default_stack.png -------------------------------------------------------------------------------- /images/Interlock_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/Interlock_enabled.png -------------------------------------------------------------------------------- /images/UCP_AccessControl_Users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_AccessControl_Users.png -------------------------------------------------------------------------------- /images/UCP_AddUserToTeam_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_AddUserToTeam_1.png -------------------------------------------------------------------------------- /images/UCP_AddUserToTeam_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_AddUserToTeam_2.png -------------------------------------------------------------------------------- /images/UCP_AddUserToTeam_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_AddUserToTeam_done.png -------------------------------------------------------------------------------- /images/UCP_Client_Bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_Client_Bundle.png -------------------------------------------------------------------------------- /images/UCP_Collections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_Collections.png -------------------------------------------------------------------------------- /images/UCP_CreateCollection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_CreateCollection.png -------------------------------------------------------------------------------- /images/UCP_CreateGrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_CreateGrant.png -------------------------------------------------------------------------------- /images/UCP_CreateGrant_DBA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_CreateGrant_DBA.png -------------------------------------------------------------------------------- /images/UCP_CreateGrant_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_CreateGrant_all.png -------------------------------------------------------------------------------- /images/UCP_CreateOrganization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_CreateOrganization.png -------------------------------------------------------------------------------- /images/UCP_CreateTeams_dba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_CreateTeams_dba.png -------------------------------------------------------------------------------- /images/UCP_CreateTeams_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_CreateTeams_done.png -------------------------------------------------------------------------------- /images/UCP_CreateTeams_labs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_CreateTeams_labs.png -------------------------------------------------------------------------------- /images/UCP_CreateUsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_CreateUsers.png -------------------------------------------------------------------------------- /images/UCP_Dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_Dashboard.png -------------------------------------------------------------------------------- /images/UCP_Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_Login.png -------------------------------------------------------------------------------- /images/UCP_Login_License.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_Login_License.png -------------------------------------------------------------------------------- /images/UCP_Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/UCP_Warning.png -------------------------------------------------------------------------------- /images/chapter3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/chapter3.png -------------------------------------------------------------------------------- /images/chapter4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Docker-Certified-Associate-DCA-Exam-Guide/HEAD/images/chapter4.png --------------------------------------------------------------------------------