Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 591 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 591 Bytes

docker-workshop

What you'll need:

  • Docker
  • Node.js

Preview

To see the completed application, run the following commands, then navigate to http://localhost:3000 in your browser.

npm run setup
npm run dev

How it should run

Refer to the workshop for how to do complete this.

# backend
docker build -t docker-workshop-backend ./apps/backend
docker run -p 3001:3001 docker-workshop-backend

# frontend
docker build -t docker-workshop-frontend ./apps/frontend
docker run -p 3000:3000 docker-workshop-frontend