-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocker-compose.yml
79 lines (74 loc) · 1.77 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
services:
grafana:
image: grafana/grafana:11.2.0
environment:
- GF_USERS_DEFAULT_THEME=light
- GF_INSTALL_PLUGINS=yesoreyeram-infinity-datasource
ports:
- 3000:3000
volumes:
- ./provisioning:/etc/grafana/provisioning
profiles:
- grafana
timescale:
image: timescale/timescaledb:latest-pg14
restart: always
environment:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
volumes:
- ./timescale:/docker-entrypoint-initdb.d
profiles:
- emulator
- engine
data-emulator:
build:
context: ./timescale
depends_on:
- timescale
environment:
WAIT_HOSTS: timescale:5432
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_HOST: timescale
profiles:
- emulator
engine:
depends_on:
- timescale
image: ghcr.io/volkovlabs/business-engine:2.3.0
#env_file: .env
environment:
DATABASE_HOST: timescale
DATABASE_PORT: 5432
DATABASE_DB: postgres
DATABASE_USERNAME: postgres
DATABASE_PASSWORD: postgres
GRAFANA_URL: http://grafana:3000
GRAFANA_TOKEN: SERVICE-ACCOUNT-TOKEN
ports:
- 3001:3001
- 3002:3002
profiles:
- engine
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
profiles:
- engine
json-server:
build:
context: ./json-server
volumes:
- ./json-server/events:/app/events
profiles:
- actions