-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
48 lines (44 loc) · 934 Bytes
/
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
version: '3.8'
services:
optee:
build: ./qemu
stdin_open: true
tty: true
command: bash -c 'echo "c" | make -j12 CFG_CORE_DYN_SHM=n CFG_CRYPTOLIB_NAME=mbedtls CFG_CRYPTOLIB_DIR=lib/libmbedtls run-only'
# SPADE
spade:
build: ./SPADE
container_name: spade
hostname: spade
stdin_open: true
volumes:
- /var/run:/var/run
command: "./bin/spade debug"
depends_on:
- receiver
# Log Receiver
receiver:
build: ./Log_Receiver
ports:
- "8080:8080"
volumes:
- /var/run:/var/run
# terminal
ree:
build: ./soc_term
container_name: ree-terminal
hostname: ree-terminal
tty: true
stdin_open: true
ports:
- "54320:54320"
command: "54320"
tee:
build: ./soc_term
container_name: tee-terminal
hostname: tee-terminal
tty: true
stdin_open: true
ports:
- "54321:54321"
command: "54321"