-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfig.yml
More file actions
49 lines (46 loc) · 1 KB
/
fig.yml
File metadata and controls
49 lines (46 loc) · 1 KB
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
zookeeper:
image: edpaget/zookeeper:3.4.6
command: -c localhost:2888:3888 -i 1
mesosleader:
image: garland/mesosphere-docker-mesos-master:latest
ports:
- "5050:5050"
environment:
MESOS_ZK: zk://zookeeper:2181/mesos
MESOS_PORT: 5050
MESOS_QUORUM: 1
MESOS_LOG_DIR: /var/log/mesos
MESOS_REGISTRY: in_memory
MESOS_WORK_DIR: /var/lib/mesos
volumes:
- .:/hello-mesos
links:
- zookeeper
- mesosfollower
mesosfollower:
image: garland/mesosphere-docker-mesos-master:latest
entrypoint: mesos-slave
environment:
MESOS_LOGGING_LEVEL: INFO
MESOS_LOG_DIR: /var/log/mesos
MESOS_MASTER: zk://zookeeper:2181/mesos
MESOS_HOSTNAME: mesosfollower
volumes:
- .:/hello-mesos
ports:
- "5051:5051"
links:
- zookeeper
hellomesos:
build: .
links:
- zookeeper
- mesosleader
- mesosfollower
entrypoint: lein
command: repl :headless :host 0.0.0.0 :port 4242
volumes:
- .:/hello-mesos
ports:
- "8081:8081"
- "4242:4242"