当前位置: 首页 > 工具软件 > Calibre-Web > 使用案例 >

docker中的technosoft2000/calibre-web镜像生成的容器没有包管理器,怎么办

司寇善
2023-12-01

您可以通过在容器中运行下列命令安装包管理器:

apt-get update apt-get install -y apt-utils apt-get install -y <包管理器名称>

例如,如果要安装 Debian 系统的包管理器 apt,您可以使用以下命令:

apt-get update apt-get install -y apt-utils apt-get install -y apt

注意:使用这种方法安装的包管理器只能在该容器内使用,并不会影响到镜像本身。如果要将包管理器安装到镜像中,则需要使用 Dockerfile 创建新的镜像。

 类似资料: