Files
formbricks-formbricks/docker-compose.yml
Matti Nannt a1a66ef6be Fix close-on-date pipeline not executed properly (#662)
* Fix github action closeOnDate pipeline

* remove prebuild turbo build
2023-08-07 19:54:23 +02:00

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
env_file:
- .env
ports:
- 3000:3000
volumes:
postgres:
driver: local