docker中的technosoft2000/calibre-web镜像生成的容器没有包管理器,怎么办
时间: 2023-02-14 12:28:32 浏览: 273
docker-calibre:用于 unRaid 的 Calibre-server docker
您可以通过在容器中运行下列命令安装包管理器:
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 创建新的镜像。
阅读全文