-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
34 lines (31 loc) · 728 Bytes
/
compose.yaml
File metadata and controls
34 lines (31 loc) · 728 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
services:
postgres:
image: postgres:17
container_name: postgres
environment:
POSTGRES_DB: mydatabase
POSTGRES_PASSWORD: secret
POSTGRES_USER: myuser
ports:
- "5432:5432"
mailpit:
image: axllent/mailpit:latest
container_name: mailpit
ports:
- "1025:1025"
- "8025:8025"
prometheus:
image: prom/prometheus:v2.44.0
container_name: prometheus
ports:
- "9090:9090"
volumes:
- ./monitoring/prometheus/config.yml:/etc/prometheus/config.yml
command:
- "--config.file=/etc/prometheus/config.yml"
grafana:
image: grafana/grafana:9.5.2
container_name: grafana
ports:
- "3000:3000"
restart: unless-stopped