mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
24 lines
380 B
YAML
24 lines
380 B
YAML
version: "3.3"
|
|
services:
|
|
postgres:
|
|
image: postgres:13-alpine
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
|
|
hostr:
|
|
build:
|
|
context: .
|
|
dockerfile: ./apps/hq/Dockerfile
|
|
depends_on:
|
|
- postgres
|
|
ports:
|
|
- 3000:3000
|
|
env_file:
|
|
- .env
|
|
|
|
volumes:
|
|
postgres:
|
|
driver: local
|