-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
49 lines (47 loc) · 1.57 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
services:
skillaegis-main:
build:
context: .
container_name: skillaegis-main
image: skillaegis/main:latest
working_dir: /app
environment:
- SKILLAEGIS_HOST=0.0.0.0
- SKILLAEGIS_PORT=4000
- SKILLAEGIS_DASHBOARD_URL=http://localhost:4001
- SKILLAEGIS_EDITOR_URL=http://localhost:4002
volumes:
- ./scenarios:/app/scenarios
ports:
- "4000:4000"
skillaegis-dashboard:
build:
context: ./SkillAegis-Dashboard
container_name: skillaegis-dashboard
image: skillaegis/dashboard:latest
working_dir: /app
environment:
- SKILLAEGIS_HOST=0.0.0.0
- SKILLAEGIS_PORT=4001
- SKILLAEGIS_EXERCISE_FOLDER=scenarios
- SKILLAEGIS_MISP_URL=${SKILLAEGIS_MISP_URL:-https://localhost/}
- SKILLAEGIS_MISP_APIKEY=${SKILLAEGIS_MISP_APIKEY:-FI4gCRghRZvLVjlLPLTFZ852x2njkkgPSz0zQ3E0}
- SKILLAEGIS_MISP_SKIPSSL=${SKILLAEGIS_MISP_SKIPSSL:-1}
volumes:
- ./scenarios:/app/scenarios
ports:
- "4001:4001"
skillaegis-editor:
build:
context: ./SkillAegis-Editor
container_name: skillaegis-editor
image: skillaegis/editor:latest
working_dir: /app
environment:
- SKILLAEGIS_HOST=0.0.0.0
- SKILLAEGIS_PORT=4002
- SKILLAEGIS_EXERCISE_FOLDER=scenarios
volumes:
- ./scenarios:/app/scenarios
ports:
- "4002:4002"