generated from intersystems-community/intersystems-iris-dev-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
36 lines (34 loc) · 978 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
version: '3.6'
services:
iris:
build:
context: .
dockerfile: Dockerfile
restart: always
command: --check-caps false --ISCAgent false
ports:
- 1972
- 52773
- 53773
volumes:
- ./:/home/irisowner/irisdev
prometheus:
image: prom/prometheus:latest
container_name: prometheus
ports:
- 9090:9090
command:
#- --config.file=/etc/prometheus/prometheus.yml
- --config.file=/etc/prometheus/prometheus.yml
- '--web.enable-lifecycle'
volumes:
#- ./prometheus-storage/prometheus.yml:/prometheus/prometheus.yml
- ./prometheus-storage/prometheus.yml:/etc/prometheus/prometheus.yml:ro
grafana:
image: grafana/grafana-oss
ports:
- 3000:3000
volumes:
#- ./grafana-storage:/var/lib/grafana
- ./grafana-provisioning/dashboards:/etc/grafana/provisioning/dashboards
- ./grafana-provisioning/datasources:/etc/grafana/provisioning/datasources