docker-compose.yml 546 B

1234567891011121314151617181920212223
  1. version: "3.7"
  2. services:
  3. web:
  4. build:
  5. context: .
  6. volumes:
  7. - "./.hoppscotch:/app/.hoppscotch"
  8. - "./assets:/app/assets"
  9. - "./directives:/app/directives"
  10. - "./layouts:/app/layouts"
  11. - "./middleware:/app/middleware"
  12. - "./pages:/app/pages"
  13. - "./plugins:/app/plugins"
  14. - "./static:/app/static"
  15. - "./store:/app/store"
  16. - "./components:/app/components"
  17. - "./helpers:/app/helpers"
  18. ports:
  19. - "3000:3000"
  20. environment:
  21. HOST: 0.0.0.0
  22. command: "npm run dev"