diff --git a/05-example-web-application/README.md b/05-example-web-application/README.md index 1c9dbc4..4875c2d 100644 --- a/05-example-web-application/README.md +++ b/05-example-web-application/README.md @@ -1,16 +1,10 @@ -Docker Desktop: https://docs.docker.com/get-docker/ +# Sample web application -Docker Engine: https://get.docker.com/ +![](./images/app-screenshot.png) -Hello World: -``` -docker run docker/whalesay cowsay "Hey Team! 👋" -``` +## Minimal 3 tier web application +- React frontend +- Node JS and Golang APIs +- Postgres Database -Run Postgres: -``` -docker run \ - --env POSTGRES_PASSWORD=foobarbaz \ - --publish 5432:5432 \ - postgres:15.1-alpine -``` \ No newline at end of file +![](./images/tech-stack.png) diff --git a/05-example-web-application/images/app-screenshot.png b/05-example-web-application/images/app-screenshot.png new file mode 100644 index 0000000..cc0d26f Binary files /dev/null and b/05-example-web-application/images/app-screenshot.png differ diff --git a/05-example-web-application/images/tech-stack.png b/05-example-web-application/images/tech-stack.png new file mode 100644 index 0000000..73413bd Binary files /dev/null and b/05-example-web-application/images/tech-stack.png differ