-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
45 lines (41 loc) · 1.05 KB
/
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
services:
grafana:
image: grafana/grafana:11.2.0
env_file: .env
ports:
- 3000:3000
volumes:
- ./volkovlabs-manager-app:/var/lib/grafana/plugins/volkovlabs-manager-app
- ./provisioning:/etc/grafana/provisioning
database:
image: timescale/timescaledb:latest-pg14
restart: always
environment:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
engine:
depends_on:
- database
- grafana
image: ghcr.io/volkovlabs/business-engine:2.0.0
env_file: .env
ports:
- 3001:3001
- 3002:3002
prometheus:
image: prom/prometheus:latest
volumes:
- ./prometheus/:/etc/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
webhook-json:
build:
context: ./webhook-json
volumes:
- ./webhook-json/events:/app/events