mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
26 lines
522 B
YAML
26 lines
522 B
YAML
version: "3.3"
|
|
services:
|
|
postgres:
|
|
image: postgres:15-alpine
|
|
volumes:
|
|
- formbricks-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:
|
|
formbricks-postgres:
|
|
driver: local
|