mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-21 13:40:31 -06:00
22 lines
449 B
YAML
22 lines
449 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: arjenz/mailhog # Copy of mailhog/MailHog to support linux/arm64
|
|
ports:
|
|
- 8025:8025 # web ui
|
|
- 1025:1025 # smtp server
|
|
|
|
volumes:
|
|
postgres:
|
|
driver: local
|