docker容器中安装curl等命令

首先查看容器的系统

cat /etc/issue
1、如果是Debian系统,会显示如下

Debian GNU/Linux 11 \n \l
这种情况使用apt-get安装

apt-get update
apt-get install curl
apt-get install wget
2、如果是Alpine Linux

Welcome to Alpine Linux 3.5
Kernel \r on an \m (\l)
使用apk add安装

apk update
apk add curl
apk add vim

apk add tennet


-----------------------------------
docker容器中安装curl等命令
https://blog.51cto.com/u_4018548/6508775

你可能感兴趣的:(docker,容器,运维)