-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
40 lines (37 loc) · 922 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
services:
api:
build: .
container_name: api
ports:
- "8080:8080"
environment:
- START_TIMESTAMP=${START_TIMESTAMP}
- END_TIMESTAMP=${END_TIMESTAMP}
- SEPARATOR=${SEPARATOR}
volumes:
- api-secrets:/root/secret
nginx:
image: ghcr.io/loan-mgt/10m-caching:latest
container_name: nginx
ports:
- "80:80"
depends_on:
- api
environment:
- API_HOST=api:8080
prometheus:
image: prom/prometheus:v2.24.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
restart: always
volumes:
api-secrets:
prometheus_data: