mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
* upgrade nextjs to 13 * update docker compose, fix env bug * update github actions check workflow to lint on ubuntu image
28 lines
558 B
YAML
28 lines
558 B
YAML
version: "3.3"
|
|
services:
|
|
postgres:
|
|
restart: unless-stopped
|
|
image: postgres:13-alpine
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_DB=snoopforms
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
ports:
|
|
- 5432:5432
|
|
|
|
mailhog:
|
|
restart: unless-stopped
|
|
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
|