mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-22 07:01:28 +00:00
20 lines
435 B
YAML
20 lines
435 B
YAML
|
version: "3.7"
|
||
|
|
||
|
services:
|
||
|
web:
|
||
|
build:
|
||
|
context: .
|
||
|
volumes:
|
||
|
- "./.postwoman:/app/.postwoman"
|
||
|
- "./assets:/app/assets"
|
||
|
- "./directives:/app/directives"
|
||
|
- "./layouts:/app/layouts"
|
||
|
- "./middleware:/app/middleware"
|
||
|
- "./pages:/app/pages"
|
||
|
- "./plugins:/app/plugins"
|
||
|
- "./static:/app/static"
|
||
|
- "./store:/app/store"
|
||
|
ports:
|
||
|
- "3000:3000"
|
||
|
command: "npm run dev"
|