forked from apache/incubator-teaclave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-ubuntu-1804.yml
197 lines (189 loc) · 4.54 KB
/
docker-compose-ubuntu-1804.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
version: '3.7'
services:
teaclave-authentication-service:
build:
context: ../
dockerfile: docker/teaclave-rt.ubuntu-1804.Dockerfile
ports:
- 7776:7776
expose:
- 7776
- 17776
volumes:
- ./runtime.config.toml:/teaclave/runtime.config.toml
- type: bind
source: /var/run/aesmd/aesm.socket
target: /var/run/aesmd/aesm.socket
devices:
- /dev/isgx
working_dir: /teaclave
environment:
- AS_SPID
- AS_KEY
- AS_ALGO
- AS_URL
- TEACLAVE_LOG
entrypoint: ./teaclave_authentication_service
container_name: teaclave-authentication-service
networks:
api:
internal:
teaclave-frontend-service:
build:
context: ../
dockerfile: docker/teaclave-rt.ubuntu-1804.Dockerfile
ports:
- 7777:7777
expose:
- 7777
volumes:
- ./runtime.config.toml:/teaclave/runtime.config.toml
- type: bind
source: /var/run/aesmd/aesm.socket
target: /var/run/aesmd/aesm.socket
devices:
- /dev/isgx
working_dir: /teaclave
environment:
- AS_SPID
- AS_KEY
- AS_ALGO
- AS_URL
- TEACLAVE_LOG
entrypoint: ./teaclave_frontend_service
depends_on:
- teaclave-management-service
container_name: teaclave-frontend-service
networks:
api:
internal:
teaclave-management-service:
build:
context: ../
dockerfile: docker/teaclave-rt.ubuntu-1804.Dockerfile
expose:
- 17777
volumes:
- ./runtime.config.toml:/teaclave/runtime.config.toml
- type: bind
source: /var/run/aesmd/aesm.socket
target: /var/run/aesmd/aesm.socket
devices:
- /dev/isgx
working_dir: /teaclave
environment:
- AS_SPID
- AS_KEY
- AS_ALGO
- AS_URL
- TEACLAVE_LOG
entrypoint: ./teaclave_management_service
depends_on:
- teaclave-storage-service
- teaclave-access-control-service
container_name: teaclave-management-service
networks:
internal:
teaclave-storage-service:
build:
context: ../
dockerfile: docker/teaclave-rt.ubuntu-1804.Dockerfile
expose:
- 17778
volumes:
- ./runtime.config.toml:/teaclave/runtime.config.toml
- type: bind
source: /var/run/aesmd/aesm.socket
target: /var/run/aesmd/aesm.socket
devices:
- /dev/isgx
working_dir: /teaclave
environment:
- AS_SPID
- AS_KEY
- AS_ALGO
- AS_URL
- TEACLAVE_LOG
entrypoint: ./teaclave_storage_service
container_name: teaclave-storage-service
networks:
internal:
teaclave-access-control-service:
build:
context: ../
dockerfile: docker/teaclave-rt.ubuntu-1804.Dockerfile
expose:
- 17779
volumes:
- ./runtime.config.toml:/teaclave/runtime.config.toml
- type: bind
source: /var/run/aesmd/aesm.socket
target: /var/run/aesmd/aesm.socket
devices:
- /dev/isgx
working_dir: /teaclave
environment:
- AS_SPID
- AS_KEY
- AS_ALGO
- AS_URL
- TEACLAVE_LOG
container_name: teaclave-access-control-service
entrypoint: ./teaclave_access_control_service
networks:
internal:
teaclave-execution-service:
build:
context: ../
dockerfile: docker/teaclave-rt.ubuntu-1804.Dockerfile
expose:
- 17770
volumes:
- ./runtime.config.toml:/teaclave/runtime.config.toml
- type: bind
source: /var/run/aesmd/aesm.socket
target: /var/run/aesmd/aesm.socket
devices:
- /dev/isgx
working_dir: /teaclave
environment:
- AS_SPID
- AS_KEY
- AS_ALGO
- AS_URL
- TEACLAVE_LOG
entrypoint: ./teaclave_execution_service
container_name: teaclave-execution-service
depends_on:
- teaclave-scheduler-service
networks:
internal:
teaclave-scheduler-service:
build:
context: ../
dockerfile: docker/teaclave-rt.ubuntu-1804.Dockerfile
expose:
- 17780
volumes:
- ./runtime.config.toml:/teaclave/runtime.config.toml
- type: bind
source: /var/run/aesmd/aesm.socket
target: /var/run/aesmd/aesm.socket
devices:
- /dev/isgx
working_dir: /teaclave
environment:
- AS_SPID
- AS_KEY
- AS_ALGO
- AS_URL
- TEACLAVE_LOG
entrypoint: ./teaclave_scheduler_service
container_name: teaclave-scheduler-service
depends_on:
- teaclave-storage-service
networks:
internal:
networks:
internal:
api: