Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 1.49 KB

Readme.md

File metadata and controls

21 lines (19 loc) · 1.49 KB

Docker Fundamentals Demos

Sr. No. Link to Demo Description
1 demo-1 Basic Docker Run demo with NGINX Container
2 demo-2 Docker container with port-forwarding enabled. Allows HOST system to access the containerized application on exposed port.
3 demo-3 Docker container with port-forwarding and terminal mode. all application logs would be displayed immediately (like streaming logs) on same terminal.
4 demo-4 Making changes in container filesystem (debugging with docker exec)
5 demo-5 Creating a new container image from existing container. (Using docker commit)
6 demo-6 Copying file to/from running container
7 demo-7 Volume demo (Two options: 1 using docker-desktop, 2 using docker-playground)
8 demo-8 Container network demo.
9 demo-9 Building new container image using Dockerfile (webapp).
10 demo-10 Buidling new container image using Dockerfile (database).
11 demo-11 Dockerfile: Entrypoint vs CMD
12 demo-12 Working with docker registry (push and pull from docker-hub).
13 demo-13 Backup and Restore container images as TARBALLs.
14 demo-14 Docker-Compose basic demo.
15 demo-15 Docker-Compose volume (shared) demo.
16 demo-16 Docker-Compose MySQL with SQLAdminer Demo