-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
64 lines (64 loc) · 1.35 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
version: "3.3"
services:
node-0:
build:
context: .
dockerfile: samples/Nyris.Crdt.AspNetExampleV2/Dockerfile
environment:
- NODE_NAME=node-0
ports:
- "5030:80"
- "5031:8080"
node-1:
build:
context: .
dockerfile: samples/Nyris.Crdt.AspNetExampleV2/Dockerfile
environment:
- NODE_NAME=node-1
ports:
- "5010:80"
- "5011:8080"
node-2:
build:
context: .
dockerfile: samples/Nyris.Crdt.AspNetExampleV2/Dockerfile
environment:
- NODE_NAME=node-2
ports:
- "5020:80"
- "5021:8080"
node-3:
build:
context: .
dockerfile: samples/Nyris.Crdt.AspNetExampleV2/Dockerfile
environment:
- NODE_NAME=node-3
ports:
- "5040:80"
- "5041:8080"
node-4:
build:
context: .
dockerfile: samples/Nyris.Crdt.AspNetExampleV2/Dockerfile
environment:
- NODE_NAME=node-4
ports:
- "5050:80"
- "5051:8080"
# prometheus:
# image: ubuntu/prometheus
# container_name: dev_prometheus
# ports:
# - "9090:9090"
# environment:
# - TZ=UTC
# volumes:
# - ./prometheus.yml:/etc/prometheus/prometheus.yml
#
# grafana:
# image: grafana/grafana
# container_name: dev_grafana
# ports:
# - "3000:3000"
# volumes:
# - ~/docker-volumes/grafana-data:/var/lib/grafana