mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 18:30:32 -06:00
23 lines
390 B
YAML
23 lines
390 B
YAML
version: "3.3"
|
|
services:
|
|
postgres:
|
|
image: postgres:13-alpine
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
|
|
snoopforms:
|
|
build: .
|
|
command: [sh, -c, "yarn prisma:migrate && yarn start"]
|
|
depends_on:
|
|
- postgres
|
|
ports:
|
|
- 3000:3000
|
|
env_file:
|
|
- .env
|
|
|
|
volumes:
|
|
postgres:
|
|
driver: local
|