-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yaml
50 lines (46 loc) · 965 Bytes
/
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
version: '3'
services:
web:
build: .
volumes:
- .:/opt/killrvideo-web
ports:
- "3000:3000"
depends_on:
- dse
- backend
environment:
KILLRVIDEO_LOGGING_LEVEL: debug
backend:
image: killrvideo/killrvideo-nodejs:3.0.0
depends_on:
- dse
environment:
KILLRVIDEO_LOGGING_LEVEL: debug
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
dse-config:
image: killrvideo/killrvideo-dse-config:3.0.0
environment:
KILLRVIDEO_SERVICE_DISCOVERY_DISABLED: 'true'
depends_on:
- dse
generator:
image: killrvideo/killrvideo-generator:3.0.2
depends_on:
- dse
- backend
environment:
KILLRVIDEO_LOGGING_LEVEL: debug