mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
move development of formbricks HQ to monorepo
This commit is contained in:
25
docker-compose.dev.yml
Normal file
25
docker-compose.dev.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
version: "3.3"
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:15-alpine
|
||||
volumes:
|
||||
- postgres:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_DB=formbricks
|
||||
- POSTGRES_USER=postgres
|
||||
- POSTGRES_PASSWORD=postgres
|
||||
ports:
|
||||
- 5432:5432
|
||||
|
||||
mailhog:
|
||||
image: mailhog/mailhog
|
||||
# network_mode: service:app
|
||||
logging:
|
||||
driver: "none" # disable saving logs
|
||||
ports:
|
||||
- 8025:8025 # web ui
|
||||
- 1025:1025 # smtp server
|
||||
|
||||
volumes:
|
||||
postgres:
|
||||
driver: local
|
||||
Reference in New Issue
Block a user