Azure Webapp: 无法在SSH中安装docker buildx

huangapple go评论79阅读模式
英文:

Azure Webapp: Unable to install docker buildx in SSH

问题

我正在Azure上运行一个应用服务。我可以SSH进入Linux终端。

Linux版本:Debian 9.13(Debian GNU/Linux 9.13(stretch))

当运行:

apt-get install docker-buildx-plugin

我得到:

E: 无法定位软件包docker-buildx-plugin

我尝试过

RUN apt-get update

以及在这个Docker引擎安装指南中提到的所有步骤。

英文:

I'm running an App Service on Azure. I can SSH into the Linux terminal.

Linux version: Debian 9.13 (Debian GNU/Linux 9.13 (stretch))

When running:

apt-get install docker-buildx-plugin

I get:

E: Unable to locate package docker-buildx-plugin

I tried

RUN apt-get update

And all steps mentioned in this Install Docker Engine guide

答案1

得分: 2

I got the same error as you have shown when I run the command apt-get install docker-buildx-plugin.

Azure Webapp: 无法在SSH中安装docker buildx

Thanks @tiborvass for the commands.

I have taken reference from the above document.

Run the below command.

curl -sSL https://get.docker.com/ | sh

This command will run the docker-buildx-plugin.

Azure Webapp: 无法在SSH中安装docker buildx

  • Now run docker buildx version to check the installed version.

Azure Webapp: 无法在SSH中安装docker buildx

  • Now try to run the command which you have tried initially.
apt-get install docker-buildx-plugin

I am not getting the error now.

Azure Webapp: 无法在SSH中安装docker buildx

英文:

Even I got the same error as you have shown when I run the command apt-get install docker-buildx-plugin.

Azure Webapp: 无法在SSH中安装docker buildx

Thanks @tiborvass for the commands.

I have taken reference from the above document.

Run the below command.

curl -sSL https://get.docker.com/ | sh

This command will run the docker-buildx-plugin.

Azure Webapp: 无法在SSH中安装docker buildx

  • Now run docker buildx version to check the installed version.

Azure Webapp: 无法在SSH中安装docker buildx

  • Now try to run the command which you have tried initially.
apt-get install docker-buildx-plugin

Iam not getting the error now.

Azure Webapp: 无法在SSH中安装docker buildx

huangapple
  • 本文由 发表于 2023年6月15日 19:22:12
  • 转载请务必保留本文链接:https://go.coder-hub.com/76481950.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定