forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
112 lines (112 loc) · 3.96 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
version: '3.4'
services:
alfred:
image: mcr.microsoft.com/fluidframework/routerlicious/server:latest
ports:
- "3003:3000"
command: node packages/routerlicious/dist/alfred/www.js
environment:
- DEBUG=fluid:*
- NODE_ENV=development
- IS_FLUID_SERVER=true
restart: always
deli:
image: mcr.microsoft.com/fluidframework/routerlicious/server:latest
command: node packages/routerlicious/dist/kafka-service/index.js deli /usr/src/server/packages/routerlicious/dist/deli/index.js
environment:
- DEBUG=fluid:*
- NODE_ENV=development
- IS_FLUID_SERVER=true
restart: always
scriptorium:
image: mcr.microsoft.com/fluidframework/routerlicious/server:latest
command: node packages/routerlicious/dist/kafka-service/index.js scriptorium /usr/src/server/packages/routerlicious/dist/scriptorium/index.js
environment:
- DEBUG=fluid:*
- NODE_ENV=development
- IS_FLUID_SERVER=true
restart: always
copier:
image: mcr.microsoft.com/fluidframework/routerlicious/server:latest
command: node packages/routerlicious/dist/kafka-service/index.js copier /usr/src/server/packages/routerlicious/dist/copier/index.js
environment:
- DEBUG=fluid:*
- NODE_ENV=development
- IS_FLUID_SERVER=true
restart: always
scribe:
image: mcr.microsoft.com/fluidframework/routerlicious/server:latest
command: node packages/routerlicious/dist/kafka-service/index.js scribe /usr/src/server/packages/routerlicious/dist/scribe/index.js
environment:
- DEBUG=fluid:*
- NODE_ENV=development
- IS_FLUID_SERVER=true
restart: always
foreman:
image: mcr.microsoft.com/fluidframework/routerlicious/server:latest
command: node packages/routerlicious/dist/kafka-service/index.js foreman /usr/src/server/packages/routerlicious/dist/foreman/index.js
environment:
- DEBUG=fluid:*
- NODE_ENV=development
- IS_FLUID_SERVER=true
restart: always
riddler:
image: mcr.microsoft.com/fluidframework/routerlicious/server:latest
ports:
- "5000:5000"
command: node packages/routerlicious/dist/riddler/www.js
environment:
- DEBUG=fluid:*
- NODE_ENV=development
- IS_FLUID_SERVER=true
restart: always
historian:
image: mcr.microsoft.com/fluidframework/routerlicious/historian:latest
ports:
- "3001:3000"
environment:
- DEBUG=fluid:*
- NODE_ENV=development
- IS_FLUID_SERVER=true
restart: always
gitrest:
image: mcr.microsoft.com/fluidframework/routerlicious/gitrest:latest
environment:
- DEBUG=fluid:*
- NODE_ENV=development
- IS_FLUID_SERVER=true
volumes:
- git:/home/node/documents
restart: always
git:
image: mcr.microsoft.com/fluidframework/routerlicious/gitssh:latest
ports:
- "3022:22"
volumes:
- git:/home/git
restart: always
zookeeper:
image: wurstmeister/zookeeper:latest
ports:
- "2181:2181"
restart: always
kafka:
image: wurstmeister/kafka:2.11-1.1.1
ports:
- "9092:9092"
environment:
KAFKA_ADVERTISED_HOST_NAME: "kafka"
KAFKA_ADVERTISED_PORT: "9092"
KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'false'
KAFKA_CREATE_TOPICS: "deltas:8:1,rawdeltas:8:1,testtopic:8:1,deltas2:8:1,rawdeltas2:8:1"
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
restart: always
redis:
image: "redis:alpine"
mongodb:
image: "mongo:3.4.3"
rabbitmq:
image: "rabbitmq:alpine"
volumes:
git:
driver: local