-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (41 loc) · 972 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (41 loc) · 972 Bytes
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
version: '2'
services:
minidote1:
image: minidote
hostname: minidote1
environment:
ERLANG_COOKIE: "minidote-cookie"
MINIDOTE_NODES: "minidote@minidote2,minidote@minidote3"
ports:
- "8087:8087"
networks:
- distributed_erlang
volumes:
- ./docker-data/m1:/var/minidote
minidote2:
image: minidote
hostname: minidote2
environment:
ERLANG_COOKIE: "minidote-cookie"
MINIDOTE_NODES: "minidote@minidote1,minidote@minidote3"
ports:
- "8088:8087"
networks:
- distributed_erlang
volumes:
- ./docker-data/m2:/var/minidote
minidote3:
image: minidote
hostname: minidote3
environment:
ERLANG_COOKIE: "minidote-cookie"
MINIDOTE_NODES: "minidote@minidote1,minidote@minidote2"
ports:
- "8089:8087"
networks:
- distributed_erlang
volumes:
- ./docker-data/m3:/var/minidote
networks:
distributed_erlang:
driver: bridge