We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
卸载旧版本的docker
sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-engine
安装社区版
sudo yum install -y yum-utils sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo sudo yum install docker-ce docker-ce-cli containerd.io
安装
sudo yum install docker-ce-<VERSION_STRING> docker-ce-cli-<VERSION_STRING> containerd.io
启动服务
sudo systemctl start docker
升级到最新版的docker就能构建Dockerfile了,另外个人更喜欢用 docker-compose.yml 的方式,提供一份
docker-compose.yml
version: '3' services: watchvuln: build: . environment: - DINGDING_ACCESS_TOKEN="" - DINGDING_SECRET="" - WECHATWORK_KEY=""
The text was updated successfully, but these errors were encountered:
我都是直接用这个一键安装,简单方便 https://mirrors.tuna.tsinghua.edu.cn/help/docker-ce/
Sorry, something went wrong.
923e4da
No branches or pull requests
卸载旧版本的docker
安装社区版
安装
启动服务
升级到最新版的docker就能构建Dockerfile了,另外个人更喜欢用
docker-compose.yml
的方式,提供一份The text was updated successfully, but these errors were encountered: