mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-23 15:48:33 +00:00
28 lines
569 B
YAML
28 lines
569 B
YAML
version: '3.0'
|
|
services:
|
|
local:
|
|
build: .
|
|
env_file:
|
|
- .env
|
|
command: [ "pnpm", "run", "start:dev" ]
|
|
environment:
|
|
- PRODUCTION=false
|
|
- DATABASE_URL=postgresql://postgres:testpass@dev-db:5432/hoppscotch?connect_timeout=300
|
|
- PORT=3000
|
|
volumes:
|
|
- .:/usr/src/app
|
|
- /usr/src/app/node_modules/
|
|
depends_on:
|
|
- dev-db
|
|
ports:
|
|
- "3170:3000"
|
|
- "9229:9229"
|
|
|
|
dev-db:
|
|
image: postgres
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_PASSWORD: testpass
|
|
POSTGRES_DB: hoppscotch
|