-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.dev.yaml
More file actions
44 lines (41 loc) · 886 Bytes
/
compose.dev.yaml
File metadata and controls
44 lines (41 loc) · 886 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
33
34
35
36
37
38
39
40
41
42
43
44
services:
postgres:
image: postgres:18
container_name: postgres
restart: always
ports:
- '5432:5432'
environment:
POSTGRES_USER: sbf
POSTGRES_PASSWORD: sbf
POSTGRES_DB: sbf
volumes:
- pgdata:/var/lib/postgresql
mailpit:
image: axllent/mailpit
container_name: mailpit
restart: unless-stopped
volumes:
- mailpit:/data
ports:
- 1025:1025
- 8025:8025
environment:
MP_MAX_MESSAGES: 5000
MP_DATABASE: /data/mailpit.db
MP_SMTP_AUTH_ACCEPT_ANY: 1
MP_SMTP_AUTH_ALLOW_INSECURE: 1
pgadmin:
image: dpage/pgadmin4
container_name: pgadmin
restart: always
ports:
- '8080:80'
environment:
PGADMIN_DEFAULT_EMAIL: admin@localhost.localdomain
PGADMIN_DEFAULT_PASSWORD: admin
depends_on:
- postgres
volumes:
pgdata:
mailpit: