├── .gitignore └── Lesson-Files ├── 01-Docker-Basics ├── 00-Starter-Code │ └── dev1 │ │ └── app │ │ ├── app.py │ │ └── requirements.txt ├── 01-Bind-Mounts │ └── dev1 │ │ └── app │ │ ├── app.py │ │ ├── requirements.txt │ │ └── run.sh ├── 01-Hello-Dockerfile │ └── dev1 │ │ ├── Dockerfile │ │ ├── app │ │ ├── app.py │ │ └── requirements.txt │ │ ├── dev1 │ │ ├── dev2 │ │ └── dev3 └── 02-Dockerfile-Optimize │ └── dev1 │ ├── Dockerfile │ ├── app │ ├── app.py │ └── requirements.txt │ ├── dev1 │ ├── dev2 │ ├── dev3 │ ├── dev4 │ └── test.txt ├── 02-Docker-Compose ├── 01-Hello-Compose │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ └── docker-compose.yml ├── 02-Named-Volume │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ └── docker-compose.yml ├── 03-Node-Red │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ └── docker-compose.yml ├── 04-Node-Red-Config │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ └── nodered │ │ ├── Dockerfile │ │ └── flows.json ├── 05-Node-Red-Config-Part-2 │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ └── nodered │ │ ├── Dockerfile │ │ └── flows.json ├── 06-InfluxDB │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ └── nodered │ │ ├── Dockerfile │ │ └── flows.json ├── 07-InfluxDB-config │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ └── nodered │ │ ├── Dockerfile │ │ └── flows.json ├── 08-InfluxDB-Healthcheck │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── influxdb │ │ └── Dockerfile │ └── nodered │ │ ├── Dockerfile │ │ └── flows.json ├── 09-Influxdb-nodered-automation │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── influxdb │ │ └── Dockerfile │ ├── nodered.1 │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js │ └── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js ├── 10-nodered-credentials │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── influxdb │ │ └── Dockerfile │ └── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js ├── 11-Grafana │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── influxdb │ │ └── Dockerfile │ └── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js ├── 12-Grafana-Config │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── influxdb │ │ └── Dockerfile │ └── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js ├── 13-Grafana-Automation │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── ds.txt │ ├── grafana │ │ ├── Dockerfile │ │ ├── dashboards │ │ │ ├── dashboard.json │ │ │ ├── dashboard.json.old │ │ │ └── dashboard.yml │ │ └── datasource.yml │ ├── influxdb │ │ └── Dockerfile │ └── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js ├── 14-Postgres │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── grafana │ │ ├── Dockerfile │ │ ├── dashboards │ │ │ ├── dashboard.json │ │ │ └── dashboard.yml │ │ └── datasource.yml │ ├── influxdb │ │ └── Dockerfile │ ├── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js │ └── postgres │ │ └── Dockerfile ├── 15-Postgres-Schema │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── grafana │ │ ├── Dockerfile │ │ ├── dashboards │ │ │ ├── dashboard.json │ │ │ └── dashboard.yml │ │ └── datasource.yml │ ├── influxdb │ │ └── Dockerfile │ ├── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js │ └── postgres │ │ ├── Dockerfile │ │ └── schema.sql ├── 16-PostgREST │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── grafana │ │ ├── Dockerfile │ │ ├── dashboards │ │ │ ├── dashboard.json │ │ │ └── dashboard.yml │ │ └── datasource.yml │ ├── influxdb │ │ └── Dockerfile │ ├── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js │ └── postgres │ │ ├── Dockerfile │ │ └── schema.sql ├── 17-PostgREST-NodeRED │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── grafana │ │ ├── Dockerfile │ │ ├── dashboards │ │ │ ├── dashboard.json │ │ │ └── dashboard.yml │ │ └── datasource.yml │ ├── influxdb │ │ └── Dockerfile │ ├── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js │ └── postgres │ │ ├── Dockerfile │ │ └── schema.sql ├── 18-Grafana-Postgres │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── grafana │ │ ├── Dockerfile │ │ ├── dashboards │ │ │ ├── dashboard.json │ │ │ ├── dashboard.json.old │ │ │ └── dashboard.yml │ │ └── datasource.yml │ ├── influxdb │ │ └── Dockerfile │ ├── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js │ └── postgres │ │ ├── Dockerfile │ │ └── schema.sql ├── 19-Docker-Networking │ ├── dev1 │ │ ├── Dockerfile │ │ └── app │ │ │ ├── app.py │ │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── grafana │ │ ├── Dockerfile │ │ ├── dashboards │ │ │ ├── dashboard.json │ │ │ ├── dashboard.json.old │ │ │ └── dashboard.yml │ │ └── datasource.yml │ ├── influxdb │ │ └── Dockerfile │ ├── nodered │ │ ├── Dockerfile │ │ ├── flows.json │ │ ├── flows_cred.json │ │ └── settings.js │ └── postgres │ │ ├── Dockerfile │ │ └── schema.sql └── 20-Docker-Compose-Exec │ ├── dev1 │ ├── Dockerfile │ └── app │ │ ├── app.py │ │ └── requirements.txt │ ├── docker-compose.yml │ ├── grafana │ ├── Dockerfile │ ├── dashboards │ │ ├── dashboard.json │ │ ├── dashboard.json.old │ │ └── dashboard.yml │ └── datasource.yml │ ├── influxdb │ └── Dockerfile │ ├── nodered │ ├── Dockerfile │ ├── flows.json │ ├── flows_cred.json │ └── settings.js │ └── postgres │ ├── Dockerfile │ └── schema.sql └── 04-Docker-Admin ├── 01-VPN-Setup ├── dev1 │ ├── .gitlab-ci.yml │ ├── Dockerfile │ ├── app │ │ ├── app.py │ │ └── requirements.txt │ └── gitinit.sh ├── docker-compose.yml ├── grafana │ ├── Dockerfile │ ├── dashboards │ │ ├── dashboard.json │ │ ├── dashboard.json.old │ │ └── dashboard.yml │ └── datasource.yml ├── influxdb │ └── Dockerfile ├── nodered │ ├── Dockerfile │ ├── flows.json │ ├── flows_cred.json │ └── settings.js └── postgres │ ├── Dockerfile │ └── schema.sql ├── 02-Linux-Capabilities ├── dev1 │ ├── .gitlab-ci.yml │ ├── Dockerfile │ ├── app │ │ ├── app.py │ │ └── requirements.txt │ └── gitinit.sh ├── docker-compose.yml ├── grafana │ ├── Dockerfile │ ├── dashboards │ │ ├── dashboard.json │ │ ├── dashboard.json.old │ │ └── dashboard.yml │ └── datasource.yml ├── influxdb │ └── Dockerfile ├── nodered │ ├── Dockerfile │ ├── flows.json │ ├── flows_cred.json │ └── settings.js └── postgres │ ├── Dockerfile │ └── schema.sql ├── 03-Connecting-to-VPN ├── dev1 │ ├── .gitlab-ci.yml │ ├── Dockerfile │ ├── app │ │ ├── app.py │ │ └── requirements.txt │ └── gitinit.sh ├── docker-compose.yml ├── grafana │ ├── Dockerfile │ ├── dashboards │ │ ├── dashboard.json │ │ ├── dashboard.json.old │ │ └── dashboard.yml │ └── datasource.yml ├── influxdb │ └── Dockerfile ├── nodered │ ├── Dockerfile │ ├── flows.json │ ├── flows_cred.json │ └── settings.js └── postgres │ ├── Dockerfile │ └── schema.sql ├── 04-service_mode ├── dev1 │ ├── .gitlab-ci.yml │ ├── Dockerfile │ ├── app │ │ ├── app.py │ │ └── requirements.txt │ └── gitinit.sh ├── docker-compose.yml ├── grafana │ ├── Dockerfile │ ├── dashboards │ │ ├── dashboard.json │ │ ├── dashboard.json.old │ │ └── dashboard.yml │ └── datasource.yml ├── influxdb │ └── Dockerfile ├── nodered │ ├── Dockerfile │ ├── flows.json │ ├── flows_cred.json │ └── settings.js └── postgres │ ├── Dockerfile │ └── schema.sql └── 05-Rest-of-Stack ├── dev1 ├── .gitlab-ci.yml ├── Dockerfile ├── app │ ├── app.py │ └── requirements.txt └── gitinit.sh ├── docker-compose.yml ├── grafana ├── Dockerfile ├── dashboards │ ├── dashboard.json │ ├── dashboard.json.old │ └── dashboard.yml └── datasource.yml ├── influxdb └── Dockerfile ├── nodered ├── Dockerfile ├── flows.json ├── flows_cred.json └── settings.js └── postgres ├── Dockerfile └── schema.sql /.gitignore: -------------------------------------------------------------------------------- 1 | *.pem 2 | scripts/ 3 | -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/00-Starter-Code/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/00-Starter-Code/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/00-Starter-Code/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/01-Bind-Mounts/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/01-Bind-Mounts/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/01-Bind-Mounts/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/01-Bind-Mounts/dev1/app/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | pip install -r requirements.txt && 3 | python app.py -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/dev1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/dev1 -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/dev2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/dev2 -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/dev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/01-Hello-Dockerfile/dev1/dev3 -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/dev1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/dev1 -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/dev2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/dev2 -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/dev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/dev3 -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/dev4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/dev4 -------------------------------------------------------------------------------- /Lesson-Files/01-Docker-Basics/02-Dockerfile-Optimize/dev1/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/01-Hello-Compose/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/01-Hello-Compose/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/01-Hello-Compose/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/01-Hello-Compose/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/01-Hello-Compose/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/01-Hello-Compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/01-Hello-Compose/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/02-Named-Volume/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/02-Named-Volume/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/02-Named-Volume/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/02-Named-Volume/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/02-Named-Volume/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/02-Named-Volume/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/02-Named-Volume/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/03-Node-Red/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/03-Node-Red/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/03-Node-Red/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/03-Node-Red/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/03-Node-Red/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/03-Node-Red/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/03-Node-Red/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/04-Node-Red-Config/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/04-Node-Red-Config/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/04-Node-Red-Config/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/04-Node-Red-Config/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/04-Node-Red-Config/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/04-Node-Red-Config/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/04-Node-Red-Config/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/04-Node-Red-Config/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/04-Node-Red-Config/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/04-Node-Red-Config/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/04-Node-Red-Config/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/05-Node-Red-Config-Part-2/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/06-InfluxDB/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/06-InfluxDB/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/06-InfluxDB/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/06-InfluxDB/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/06-InfluxDB/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/06-InfluxDB/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/06-InfluxDB/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/06-InfluxDB/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/06-InfluxDB/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/06-InfluxDB/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/06-InfluxDB/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/07-InfluxDB-config/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/07-InfluxDB-config/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/07-InfluxDB-config/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/07-InfluxDB-config/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/07-InfluxDB-config/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/07-InfluxDB-config/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/07-InfluxDB-config/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/07-InfluxDB-config/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/07-InfluxDB-config/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/07-InfluxDB-config/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/07-InfluxDB-config/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/08-InfluxDB-Healthcheck/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered.1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered.1/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered.1/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered.1/flows_cred.json: -------------------------------------------------------------------------------- 1 | {"$":"b81dbfba99b392b4e03073c50ba6986ftanl6PGFnT7H0JVw+/CZEm6P+R0TcS4KTYQYnmDOR7KPxu8xkYvIhbO8Ky4="} -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered.1/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered.1/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered/flows_cred.json: -------------------------------------------------------------------------------- 1 | {"817ac0aa.0e86a":{"token":"${INFLUXDB_TOKEN}"}} -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/09-Influxdb-nodered-automation/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/10-nodered-credentials/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/10-nodered-credentials/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/10-nodered-credentials/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/10-nodered-credentials/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/10-nodered-credentials/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/10-nodered-credentials/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/10-nodered-credentials/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/10-nodered-credentials/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/10-nodered-credentials/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/10-nodered-credentials/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/10-nodered-credentials/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/10-nodered-credentials/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/10-nodered-credentials/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/10-nodered-credentials/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/10-nodered-credentials/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/10-nodered-credentials/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/10-nodered-credentials/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/11-Grafana/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/11-Grafana/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/11-Grafana/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/11-Grafana/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/11-Grafana/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/11-Grafana/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/11-Grafana/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/11-Grafana/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/11-Grafana/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/11-Grafana/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/11-Grafana/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/11-Grafana/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/11-Grafana/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/11-Grafana/nodered/flows_cred.json: -------------------------------------------------------------------------------- 1 | {"817ac0aa.0e86a":{"token":"${INFLUXDB_TOKEN}"}} -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/11-Grafana/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/11-Grafana/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/12-Grafana-Config/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/12-Grafana-Config/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/12-Grafana-Config/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/12-Grafana-Config/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/12-Grafana-Config/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/12-Grafana-Config/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/12-Grafana-Config/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/12-Grafana-Config/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/12-Grafana-Config/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/12-Grafana-Config/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/12-Grafana-Config/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/12-Grafana-Config/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/12-Grafana-Config/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/12-Grafana-Config/nodered/flows_cred.json: -------------------------------------------------------------------------------- 1 | {"$":"83aad144e402be08a630d2098113487byWrOyiFpuZGNJu4c44l2ux2pWw6zU32Ba2xg+F/Q3ha2zMMj2gLOo3vBnsc="} -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/12-Grafana-Config/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/12-Grafana-Config/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/ds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/ds.txt -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/grafana/dashboards/dashboard.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/grafana/dashboards/dashboard.json.old -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/13-Grafana-Automation/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/13-Grafana-Automation/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/14-Postgres/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/14-Postgres/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:13 -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:13 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/15-Postgres-Schema/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/15-Postgres-Schema/postgres/schema.sql -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:13 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/16-PostgREST/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/16-PostgREST/postgres/schema.sql -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:13 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/17-PostgREST-NodeRED/postgres/schema.sql -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/grafana/dashboards/dashboard.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/grafana/dashboards/dashboard.json.old -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:13 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/18-Grafana-Postgres/postgres/schema.sql -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/grafana/dashboards/dashboard.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/grafana/dashboards/dashboard.json.old -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:13 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/19-Docker-Networking/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/19-Docker-Networking/postgres/schema.sql -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/grafana/dashboards/dashboard.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/grafana/dashboards/dashboard.json.old -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:13 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/02-Docker-Compose/20-Docker-Compose-Exec/postgres/schema.sql -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/dev1/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/dev1/.gitlab-ci.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/dev1/gitinit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/dev1/gitinit.sh -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/grafana/dashboards/dashboard.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/grafana/dashboards/dashboard.json.old -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:13 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/01-VPN-Setup/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/01-VPN-Setup/postgres/schema.sql -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/dev1/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/dev1/.gitlab-ci.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/dev1/gitinit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/dev1/gitinit.sh -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/grafana/dashboards/dashboard.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/grafana/dashboards/dashboard.json.old -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:13 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/02-Linux-Capabilities/postgres/schema.sql -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/dev1/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/dev1/.gitlab-ci.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/dev1/gitinit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/dev1/gitinit.sh -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/grafana/dashboards/dashboard.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/grafana/dashboards/dashboard.json.old -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/03-Connecting-to-VPN/postgres/schema.sql -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/dev1/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/dev1/.gitlab-ci.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/dev1/gitinit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/dev1/gitinit.sh -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/grafana/dashboards/dashboard.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/grafana/dashboards/dashboard.json.old -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/04-service_mode/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/04-service_mode/postgres/schema.sql -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/dev1/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/dev1/.gitlab-ci.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/dev1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/dev1/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/dev1/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/dev1/app/app.py -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/dev1/app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/dev1/gitinit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/dev1/gitinit.sh -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/docker-compose.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/grafana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/grafana/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/grafana/dashboards/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/grafana/dashboards/dashboard.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/grafana/dashboards/dashboard.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/grafana/dashboards/dashboard.json.old -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/grafana/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/grafana/dashboards/dashboard.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/grafana/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/grafana/datasource.yml -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/influxdb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/influxdb/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/nodered/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/nodered/Dockerfile -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/nodered/flows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/nodered/flows.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/nodered/flows_cred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/nodered/flows_cred.json -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/nodered/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/nodered/settings.js -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:13 2 | 3 | COPY schema.sql /docker-entrypoint-initdb.d/ -------------------------------------------------------------------------------- /Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/postgres/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morethancertified/mtc-docker/HEAD/Lesson-Files/04-Docker-Admin/05-Rest-of-Stack/postgres/schema.sql --------------------------------------------------------------------------------