3 tier demo app
The app is inteded to be very simple
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