DEV Community

tamilvanan
tamilvanan

Posted on

Install OWASP Juice Shop in Docker

  1. Pull the Juice Shop image:
docker pull bkimminich/juice-shop
Enter fullscreen mode Exit fullscreen mode
  1. Run it on port 3000 (so it won’t conflict with anything else):
docker run -d -p 3000:3000 bkimminich/juice-shop
Enter fullscreen mode Exit fullscreen mode
  1. Access in browser:
http://localhost:3000
Enter fullscreen mode Exit fullscreen mode

Top comments (0)