-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (40 loc) · 992 Bytes
/
docker-compose.yml
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
45
version: '3.1'
services:
ff:
build:
context: ./
dockerfile: Dockerfile
ports:
- '2112:2112'
db:
image: postgres:13-alpine
environment:
- POSTGRES_DB=ff
- POSTGRES_USER=ff
- POSTGRES_PASSWORD=notsecure!notsecure!notsecure
ports:
- '5432:5432'
volumes:
- database-data:/var/lib/postgresql/data/
prometheus:
image: prom/prometheus:v2.30.0
volumes:
- ./prometheus/:/etc/prometheus/
- prometheus_data:/prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
- '--web.console.libraries=/usr/share/prometheus/console_libraries'
- '--web.console.templates=/usr/share/prometheus/consoles'
ports:
- 9090:9090
grafana:
image: grafana/grafana:latest
ports:
- '3000:3000'
volumes:
- grafana-storage:/var/lib/grafana
volumes:
database-data:
prometheus_data:
grafana-storage: