-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (38 loc) · 900 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (38 loc) · 900 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:
mongo:
image: mongo
ports:
- "27017"
redis:
image: redis
ports:
- "6379"
ml-classification-server:
image: drish96/ml-classification-server
ports:
- "5000"
ui:
image: drish96/tweebotd
ports:
- "8085:8085"
links:
- mongo
- redis
- ml-classification-server
depends_on:
- mongo
- redis
- ml-classification-server
environment:
- "CONSUMER_KEY=${CONSUMER_KEY}"
- "CONSUMER_SECRET=${CONSUMER_SECRET}"
- "ACCESS_TOKEN=${ACCESS_TOKEN}"
- "ACCESS_TOKEN_SECRET=${ACCESS_TOKEN_SECRET}"
- "SESSION_SECRET=${SESSION_SECRET}"
- "MONGODB_URL=${MONGODB_URL}"
- "REDIS_PORT=${REDIS_PORT}"
- "REDIS_HOSTNAME=${REDIS_HOSTNAME}"
- "CALLBACK_URL=${CALLBACK_URL}"
- "LAMBDA_URL=${LAMBDA_URL}"
- "NODE_ENV=${NODE_ENV}"