File tree Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -233,16 +233,13 @@ check_prereqs() {
233
233
echo " WARNING: Docker version ${test} deprecated, recommend upgrade to ${docker_rec_version} or newer."
234
234
fi
235
235
236
- arm=false
237
236
case $( uname -m) in
238
237
armv7l)
239
238
echo " ERROR: 32bit arm is not supported. Check if your hardware support arm64, which is supported in experimental capacity."
240
239
exit 1
241
240
;;
242
241
aarch64 | arm64)
243
- echo " WARNING: Support for aarch64 is experimental at the moment. Please report any problems at https://meta.discourse.org/tag/arm"
244
- image=" discourse/base:aarch64"
245
- arm=true
242
+ echo " arm64 arch detected."
246
243
;;
247
244
x86_64)
248
245
echo " x86_64 arch detected."
@@ -257,18 +254,6 @@ check_prereqs() {
257
254
# 4. discourse docker image is downloaded
258
255
test=` $docker_path images | awk ' {print $1 ":" $2 }' | grep " $image " `
259
256
260
- # arm experimental support is on a fixed tag, always pull
261
- if [ -z " $test " ] || [ $arm = true ]; then
262
- echo
263
- echo " WARNING: We are about to start downloading the Discourse base image"
264
- echo " This process may take anywhere between a few minutes to an hour, depending on your network speed"
265
- echo
266
- echo " Please be patient"
267
- echo
268
-
269
- pull_image
270
- fi
271
-
272
257
# 5. running recommended git version
273
258
test=($( $git_path --version) ) # Get git version string
274
259
test=${test[2]// ,/ } # Get version alone and strip comma if exists
You can’t perform that action at this time.
0 commit comments