- Install docker-compose
docker-compose up
- Open http://localhost
The service test is just an example of adding a sep test service that runs all test while developing.
docker build -t web .
docker run -p 80:3000 -it web
- Open http://localhost
docker build --target test -t web .
docker run -it web
docker build --target e2e -t web .
docker run -it web