-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (30 loc) · 872 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (30 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
services:
cache:
image: "redis:alpine"
container_name: goship_cache
ports:
- "127.0.0.1:${HOST_CACHE_PORT-6379}:6379"
# db:
# # PG 16 is currenly not supported by Ent ORM: https://github.com/ent/ent/issues/3750
# image: ankane/pgvector:v0.5.1
# container_name: goship_db
# ports:
# - "127.0.0.1:${HOST_DB_PORT-5432}:5432"
# environment:
# - POSTGRES_USER=admin
# - POSTGRES_PASSWORD=admin
# - POSTGRES_DB=goship_db
mailpit:
image: axllent/mailpit
container_name: goship_mailpit
restart: always
volumes:
- ./data:/data
ports:
- "${HOST_MAILPIT_HTTP_PORT-8025}:8025"
- "${HOST_MAILPIT_SMTP_PORT-1025}:1025"
environment:
MP_MAX_MESSAGES: 5000
MP_DATA_FILE: /data/mailpit.db
MP_SMTP_AUTH_ACCEPT_ANY: 1
MP_SMTP_AUTH_ALLOW_INSECURE: 1