通过启动来安装Docker

问题描述 投票:0回答:1

如何将完整的docker包添加到具有所有依赖项的Kick-start文件中?

我正在添加docker存储库:

repo --name="docker-ce-stable" --baseurl=https://download.docker.com/linux/centos/7/$basearch/stable
docker centos7 rhel
1个回答
0
投票

在像这样的kickstart文件的末尾添加一个帖子

%post --log=/var/log/post.log
exec < /dev/tty3 > /dev/tty3
chvt 3
echo "################################"
echo "# Running Post Configuration   #"
echo "################################"
echo "exclude=kernel*" >> /etc/yum.conf
# update the system
yum update -y
#Setting docker-repo
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
#Installing docker
yum install -y docker-ce-18.09.2-3.el7 docker-ce-cli-18.09.2-3.el7 
containerd.io-1.2.2-3.el7
%end
© www.soinside.com 2019 - 2024. All rights reserved.