mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
add suggestions in failure message in install script
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>
This commit is contained in:
parent
0e8c7d7277
commit
5fd7ef2c4b
1 changed files with 5 additions and 1 deletions
|
@ -210,7 +210,11 @@ do_install() {
|
|||
# unofficially supported without available repositories
|
||||
aarch64|arm64|ppc64le|s390x)
|
||||
cat 1>&2 <<-EOF
|
||||
Error: Docker doesn't officially support $architecture and no Docker $architecture repository exists.
|
||||
Error: This install script does not support $architecture, because no
|
||||
$architecture package exists in Docker's repositories.
|
||||
|
||||
Other install options include checking your distribution's package repository
|
||||
for a version of Docker, or building Docker from source.
|
||||
EOF
|
||||
exit 1
|
||||
;;
|
||||
|
|
Loading…
Add table
Reference in a new issue