hoppscotch/packages/hoppscotch-backend/docker-compose.yml

26 lines
467 B
YAML
Raw Normal View History

version: '3.0'
services:
local:
build: .
environment:
- PRODUCTION=false
2022-12-07 15:22:31 +00:00
- DATABASE_URL=postgresql://postgres:testpass@dev-db:5432/hoppscotch?connect_timeout=300
- PORT=3000
# volumes:
# - .:/usr/src/app
depends_on:
- dev-db
ports:
- "3170:3000"
- "9229:9229"
dev-db:
image: postgres
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: testpass
POSTGRES_DB: hoppscotch