Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 614 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 614 Bytes

Demo Todo App

3 tier demo app

How it works ?

diagram

The app is inteded to be very simple

Build and run the app

cd ./src

# get redis image
docker pull docker.io/library/redis:7
docker tag docker.io/library/redis:7 redis
# build server image and 
docker build -t server-todo ./server
# build front image
docker build -t front-todo ./front
# run three instances
docker run --rm --net=host --name=redis redis
docker run --rm --net=host --name=server localhost/server-todo
docker run --rm --net=host --name=front localhost/front-todo