From a83f0f15ca96cf5d8f5821d99112b86b45e75f71 Mon Sep 17 00:00:00 2001 From: Samik Malhotra Date: Sat, 24 Sep 2022 01:11:25 +0530 Subject: [PATCH] feat: replaced katacoda with docker as reqd --- .../containerization_with_docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/courses/level102/containerization_and_orchestration/containerization_with_docker.md b/courses/level102/containerization_and_orchestration/containerization_with_docker.md index 0bc23ff..f50adcd 100644 --- a/courses/level102/containerization_and_orchestration/containerization_with_docker.md +++ b/courses/level102/containerization_and_orchestration/containerization_with_docker.md @@ -83,7 +83,7 @@ The official [docker github](https://github.com/docker/labs) provides labs at se 3. [Creating and containerizing a basic Flask app](https://github.com/docker/labs/blob/master/beginner/chapters/webapps.md) -Here is another [beginner level lab](https://www.katacoda.com/courses/docker/2) from Katacoda for dockerizing a node js application. You don’t even need a local setup for this and it’s easy to follow along. +Here is another [beginner level lab](https://github.com/docker/awesome-compose/tree/master/react-express-mongodb) for dockerizing a MERN (Mongo + React + Express) application and it’s easy to follow along. ## Advanced features of Docker @@ -95,6 +95,6 @@ Docker networks facilitate the interaction between containers running on the sam **Volumes** -Apart from images, containers and networks, Docker also provides the option to create and mount volumes within containers. Generally, data within docker containers is non-persistent i.e once you kill the container the data is lost. Volumes are used for storing persistent data in containers. This [KataKoda lab](https://www.katacoda.com/courses/docker/persisting-data-using-volumes) is a great place to start playing with volumes. +Apart from images, containers and networks, Docker also provides the option to create and mount volumes within containers. Generally, data within docker containers is non-persistent i.e once you kill the container the data is lost. Volumes are used for storing persistent data in containers. This [Docker lab](https://dockerlabs.collabnix.com/beginners/volume/creating-volume-mount-from-dockercli.html) is a great place to start playing with volumes. [In the next section](https://linkedin.github.io/school-of-sre/level102/containerization_and_orchestration/orchestration_with_kubernetes/) we see how container deployments are orchestrated with Kubernetes.