Files
formbricks-formbricks/docker-compose.yml
Matti Nannt 5c378bc8ce Feature/monorepo #95 (#105)
Move repository into a monorepo with turborepo and pnpm.
This is a big change in the way the code is organized, used and deployed.
2022-10-13 09:46:43 +02:00

24 lines
386 B
YAML

version: "3.3"
services:
postgres:
image: postgres:13-alpine
volumes:
- postgres:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
snoopforms:
build:
context: .
dockerfile: ./apps/web/Dockerfile
depends_on:
- postgres
ports:
- 3000:3000
env_file:
- .env
volumes:
postgres:
driver: local