mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-05 21:32:02 -06:00
Co-authored-by: Johannes <johannes@formbricks.com> Co-authored-by: Piyush Gupta <piyushguptaa2z123@gmail.com> Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
25 lines
489 B
YAML
25 lines
489 B
YAML
services:
|
|
postgres:
|
|
image: pgvector/pgvector:pg17
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_DB=postgres
|
|
- 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
|