Adds suggestions to where you can install docker in the case
that the install script fails to install because of the architecture
not being officially supported.
Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
| ... | ... |
@@ -210,7 +210,11 @@ do_install() {
|
| 210 | 210 |
# unofficially supported without available repositories |
| 211 | 211 |
aarch64|arm64|ppc64le|s390x) |
| 212 | 212 |
cat 1>&2 <<-EOF |
| 213 |
- Error: Docker doesn't officially support $architecture and no Docker $architecture repository exists. |
|
| 213 |
+ Error: This install script does not support $architecture, because no |
|
| 214 |
+ $architecture package exists in Docker's repositories. |
|
| 215 |
+ |
|
| 216 |
+ Other install options include checking your distribution's package repository |
|
| 217 |
+ for a version of Docker, or building Docker from source. |
|
| 214 | 218 |
EOF |
| 215 | 219 |
exit 1 |
| 216 | 220 |
;; |