hoppscotch/docker-compose.yml

21 lines
476 B
YAML
Raw Normal View History

2019-09-27 12:06:51 +00:00
version: "3.7"
services:
web:
build:
context: .
volumes:
2020-08-13 11:20:02 +00:00
- "./.hoppscotch:/app/.hoppscotch"
2019-09-27 12:06:51 +00:00
- "./assets:/app/assets"
- "./directives:/app/directives"
- "./layouts:/app/layouts"
- "./middleware:/app/middleware"
- "./pages:/app/pages"
- "./plugins:/app/plugins"
- "./static:/app/static"
- "./store:/app/store"
- "./components:/app/components"
2019-09-27 12:06:51 +00:00
ports:
- "3000:3000"
command: "npm run dev"