docker image build -t backend backend
docker image build -t frontend frontend
docker network create frontbackend
docker container run --name backend -d --net=frontbackend backend
docker container run --name frontend -d --net=frontbackend -p 6666:8888 frontend
curl localhost:6666
: type twice- modify the
backend/input.txt
file curl localhost:6666
: type twice to see the update