-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yaml
61 lines (57 loc) · 1.43 KB
/
docker-compose.yaml
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
version: '3'
services:
# The KillrVideo Sample Data Generator
generator:
build: .
#image: killrvideo/killrvideo-generator
volumes:
- .:/opt/killrvideo-generator
ports:
- "5858:5858"
depends_on:
- dse
- backend
environment:
KILLRVIDEO_YOUTUBE_API_KEY: SET_YOUR_YOUTUBE_KEY_HERE
KILLRVIDEO_LOGGING_LEVEL: debug
command: "node --debug /opt/killrvideo-generator/dist/index.js"
# DataStax Enterprise
# start with search and graph modes enabled ("-s -g")
dse:
image: datastax/dse-server:6.7.0
command: [ -s -g ]
ports:
- "9042:9042"
- "8983:8983"
- "8182:8182"
environment:
DS_LICENSE: accept
# Allow DSE to lock memory with mlock
cap_add:
- IPC_LOCK
ulimits:
memlock: -1
# Container to load KillrVideo schema and search config into DSE
# Provides options to configure secure users as well
# Runs only once and exits
dse-config:
image: killrvideo/killrvideo-dse-config:3.0.0
depends_on:
- dse
# The KillrVideo backend application used by the generator to submit sample data
backend:
image: killrvideo/killrvideo-nodejs:3.0.0
ports:
- "50101:50101"
depends_on:
- dse
environment:
KILLRVIDEO_LOGGING_LEVEL: debug
# studio:
# image: killrvideo/killrvideo-studio:2.0.0
# ports:
# - "9091:9091"
# depends_on:
# - dse
# environment:
# DS_LICENSE: accept