@@ -12,12 +12,22 @@ services:
12
12
environment :
13
13
POSTGRES_DB : benchmark
14
14
POSTGRES_PASSWORD : password
15
+ deploy :
16
+ resources :
17
+ limits :
18
+ cpus : " 0.25"
19
+ memory : 100M
15
20
dummy_start :
16
21
image : alpine:latest
17
22
command : sleep 5
18
23
depends_on :
19
24
postgres :
20
25
condition : service_started
26
+ deploy :
27
+ resources :
28
+ limits :
29
+ cpus : " 0.1"
30
+ memory : 50M
21
31
python36 :
22
32
build :
23
33
context : ./docker/
@@ -33,6 +43,11 @@ services:
33
43
volumes :
34
44
- ./src:/code/src
35
45
- ./report:/code/report
46
+ deploy :
47
+ resources :
48
+ limits :
49
+ cpus : " 0.75"
50
+ memory : 350M
36
51
depends_on :
37
52
dummy_start :
38
53
condition : service_completed_successfully
@@ -50,6 +65,11 @@ services:
50
65
volumes :
51
66
- ./src:/code/src
52
67
- ./report:/code/report
68
+ deploy :
69
+ resources :
70
+ limits :
71
+ cpus : " 0.75"
72
+ memory : 350M
53
73
depends_on :
54
74
postgres :
55
75
condition : service_started
@@ -59,13 +79,18 @@ services:
59
79
build :
60
80
context : ./docker/
61
81
args :
62
- DOCKER_IMAGE : python:3.8.19 -slim-bookworm
82
+ DOCKER_IMAGE : python:3.8.20 -slim-bookworm
63
83
entrypoint : ./entrypoint.sh
64
84
environment :
65
85
- PY_VERSION=3.8
66
86
volumes :
67
87
- ./src:/code/src
68
88
- ./report:/code/report
89
+ deploy :
90
+ resources :
91
+ limits :
92
+ cpus : " 0.75"
93
+ memory : 350M
69
94
depends_on :
70
95
postgres :
71
96
condition : service_started
@@ -75,13 +100,18 @@ services:
75
100
build :
76
101
context : ./docker/
77
102
args :
78
- DOCKER_IMAGE : python:3.9.19 -slim-bookworm
103
+ DOCKER_IMAGE : python:3.9.20 -slim-bookworm
79
104
entrypoint : ./entrypoint.sh
80
105
environment :
81
106
- PY_VERSION=3.9
82
107
volumes :
83
108
- ./src:/code/src
84
109
- ./report:/code/report
110
+ deploy :
111
+ resources :
112
+ limits :
113
+ cpus : " 0.75"
114
+ memory : 350M
85
115
depends_on :
86
116
postgres :
87
117
condition : service_started
@@ -91,13 +121,18 @@ services:
91
121
build :
92
122
context : ./docker/
93
123
args :
94
- DOCKER_IMAGE : python:3.10.14 -slim-bookworm
124
+ DOCKER_IMAGE : python:3.10.15 -slim-bookworm
95
125
entrypoint : ./entrypoint.sh
96
126
environment :
97
127
- PY_VERSION=3.10
98
128
volumes :
99
129
- ./src:/code/src
100
130
- ./report:/code/report
131
+ deploy :
132
+ resources :
133
+ limits :
134
+ cpus : " 0.75"
135
+ memory : 350M
101
136
depends_on :
102
137
postgres :
103
138
condition : service_started
@@ -107,13 +142,18 @@ services:
107
142
build :
108
143
context : ./docker/
109
144
args :
110
- DOCKER_IMAGE : python:3.11.9 -slim-bookworm
145
+ DOCKER_IMAGE : python:3.11.10 -slim-bookworm
111
146
entrypoint : ./entrypoint.sh
112
147
environment :
113
148
- PY_VERSION=3.11
114
149
volumes :
115
150
- ./src:/code/src
116
151
- ./report:/code/report
152
+ deploy :
153
+ resources :
154
+ limits :
155
+ cpus : " 0.75"
156
+ memory : 350M
117
157
depends_on :
118
158
postgres :
119
159
condition : service_started
@@ -123,7 +163,7 @@ services:
123
163
build :
124
164
context : ./docker/
125
165
args :
126
- DOCKER_IMAGE : python:3.12.3 -slim-bookworm
166
+ DOCKER_IMAGE : python:3.12.6 -slim-bookworm
127
167
SETUPTOOLS_VERSION : 68.2.2
128
168
REQUIREMENTS : requirements312.txt
129
169
entrypoint : ./entrypoint.sh
@@ -132,6 +172,11 @@ services:
132
172
volumes :
133
173
- ./src:/code/src
134
174
- ./report:/code/report
175
+ deploy :
176
+ resources :
177
+ limits :
178
+ cpus : " 0.75"
179
+ memory : 350M
135
180
depends_on :
136
181
postgres :
137
182
condition : service_started
@@ -141,7 +186,7 @@ services:
141
186
build :
142
187
context : ./docker/
143
188
args :
144
- DOCKER_IMAGE : python:3.13.0b2 -slim-bookworm
189
+ DOCKER_IMAGE : python:3.13.0rc2 -slim-bookworm
145
190
SETUPTOOLS_VERSION : 68.2.2
146
191
REQUIREMENTS : requirements313.txt
147
192
entrypoint : ./entrypoint.sh
@@ -150,6 +195,11 @@ services:
150
195
volumes :
151
196
- ./src:/code/src
152
197
- ./report:/code/report
198
+ deploy :
199
+ resources :
200
+ limits :
201
+ cpus : " 0.75"
202
+ memory : 350M
153
203
depends_on :
154
204
postgres :
155
205
condition : service_started
@@ -158,6 +208,11 @@ services:
158
208
dummy_close :
159
209
image : alpine:latest
160
210
command : sleep 2
211
+ deploy :
212
+ resources :
213
+ limits :
214
+ cpus : " 0.1"
215
+ memory : 50M
161
216
depends_on :
162
217
postgres :
163
218
condition : service_started
0 commit comments