cd admin-frontend
docker build -f Dockerfile.dev .
docker run -p 3000:3000 -it <id>
visit localhost:3000 to view the admin-frontend app
cd client-frontend
docker build -f Dockerfile.dev .
docker run -p 3001:3000 -it <id>
visit localhost:3001 to view the client-frontend app
cd admin-backend
docker build -f Dockerfile.dev .
docker run -p 5000:5000 -it <id>
visit localhost:5000 to view the admin-backend app
cd client-backend
docker build -f Dockerfile.dev .
docker run -p 5001:5001 -it <id>
visit http://0.0.0.0:5001 to view the client-backend app