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