mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
* format code * fix building issue in database package * update turbo config and package jsons * update error package with more information and license * fix typescript issues in ui package * update package-lock * update packages * clean dependencies in web * clean up dependencies in demo & formbricks-com * remove unsused template file * remove legacy capture endpoint * remove unfinished client endpoints * clean up unused functions * fix formbricks not loading on invalid session * update readme
26 lines
426 B
YAML
26 lines
426 B
YAML
version: "3.3"
|
|
services:
|
|
postgres:
|
|
restart: always
|
|
image: postgres:15-alpine
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
|
|
formbricks:
|
|
restart: always
|
|
build:
|
|
context: .
|
|
dockerfile: ./apps/web/Dockerfile
|
|
depends_on:
|
|
- postgres
|
|
ports:
|
|
- 3000:3000
|
|
env_file:
|
|
- .env
|
|
|
|
volumes:
|
|
postgres:
|
|
driver: local
|