-
Notifications
You must be signed in to change notification settings - Fork 2
/
compose.yml
194 lines (181 loc) · 4.58 KB
/
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
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
version: '3.9'
services:
## Full theia IDE base images
theia-base-38:
image: registry.digitalocean.com/anubis/theia-base:python-3.8
ports:
- "5000:5000"
build:
context: ./theia-base
args:
PY_VERSION: '3.8.13'
BUILD_THEIA: 'ON'
theia-base-39:
image: registry.digitalocean.com/anubis/theia-base:python-3.9
ports:
- "5000:5000"
build:
context: ./theia-base
args:
PY_VERSION: '3.9.13'
BUILD_THEIA: 'ON'
theia-base-310:
image: registry.digitalocean.com/anubis/theia-base:python-3.10
ports:
- "5000:5000"
build:
context: ./theia-base
args:
PY_VERSION: '3.10.6'
BUILD_THEIA: 'ON'
theia-base-311:
image: registry.digitalocean.com/anubis/theia-base:python-3.11
ports:
- "5000:5000"
build:
context: ./theia-base
args:
PY_VERSION: '3.11.0'
BUILD_THEIA: 'ON'
## Webtop base images
webtop-base-38:
image: registry.digitalocean.com/anubis/webtop-base:python-3.8
ports:
- "5000:5000"
build:
context: ./theia-base
dockerfile: Dockerfile-webtop
args:
PY_VERSION: '3.8.13'
webtop-base-39:
image: registry.digitalocean.com/anubis/webtop-base:python-3.9
ports:
- "5000:5000"
build:
context: ./theia-base
dockerfile: Dockerfile-webtop
args:
PY_VERSION: '3.9.13'
webtop-base-310:
image: registry.digitalocean.com/anubis/webtop-base:python-3.10
ports:
- "5000:5000"
build:
context: ./theia-base
dockerfile: Dockerfile-webtop
args:
PY_VERSION: '3.10.6'
webtop-base-311:
image: registry.digitalocean.com/anubis/webtop-base:python-3.11
ports:
- "5000:5000"
build:
context: ./theia-base
dockerfile: Dockerfile-webtop
args:
PY_VERSION: '3.11.0rc1'
## General IDE images
theia-golang:
image: registry.digitalocean.com/anubis/theia-golang:latest
ports:
- "5000:5000"
build: ./theia-golang
theia-cpp:
image: registry.digitalocean.com/anubis/theia-cpp:latest
ports:
- "5000:5000"
build: ./theia-cpp
theia-procdesign:
image: registry.digitalocean.com/anubis/theia-procdesign:latest
ports:
- "5000:5000"
build: ./theia-procdesign
theia-admin:
image: registry.digitalocean.com/anubis/theia-admin:latest
ports:
- "5000:5000"
build: ./theia-admin
theia-flask-39:
image: registry.digitalocean.com/anubis/theia-flask:python-3.9
ports:
- "5000:5000"
build:
context: ./theia-flask
args:
PY_VERSION: '3.9'
theia-flask-310:
image: registry.digitalocean.com/anubis/theia-flask:python-3.10
ports:
- "5000:5000"
build:
context: ./theia-flask
args:
PY_VERSION: '3.10'
theia-mysql-39:
image: registry.digitalocean.com/anubis/theia-mysql:python-3.9
ports:
- "5000:5000"
build:
context: ./theia-mysql
args:
PY_VERSION: '3.9'
theia-mysql-310:
image: registry.digitalocean.com/anubis/theia-mysql:python-3.10
ports:
- "5000:5000"
build:
context: ./theia-mysql
args:
PY_VERSION: '3.10'
## Course specific images
# Image for devops with Calahan
theia-devops:
image: registry.digitalocean.com/anubis/theia-devops:latest
ports:
- "5000:5000"
build: ./theia-devops
## Course specific images
# Image for OSIRIS
theia-osiris:
image: registry.digitalocean.com/anubis/theia-osiris:latest
ports:
- "5000:5000"
build: ./theia-osiris
webtop-osiris:
image: registry.digitalocean.com/anubis/webtop-osiris:latest
user: root
ports:
- "5000:5000"
build:
context: ./theia-osiris
args:
PY_VERSION: '3.10'
WEBTOP: 'ON'
BASE_IMAGE: registry.digitalocean.com/anubis/webtop-base:python-3.10
## Course specific images
# Image for OSIRIS
theia-pincer:
image: registry.digitalocean.com/anubis/theia-pincer:latest
ports:
- "5000:5000"
build: ./theia-pincer
# Image for CompArch & PL with Epstein
theia-jepst:
image: registry.digitalocean.com/anubis/theia-jepst:latest
ports:
- "5000:5000"
build:
context: ./theia-jepst
args:
PY_VERSION: '3.10'
WEBTOP: 'OFF'
webtop-jepst:
image: registry.digitalocean.com/anubis/webtop-jepst:latest
ports:
- "5000:5000"
build:
context: ./theia-jepst
args:
PY_VERSION: '3.10'
WEBTOP: 'ON'
BASE_IMAGE: registry.digitalocean.com/anubis/webtop-base:python-3.10