quincycheng / cicd

This repo demonstrates how to use CyberArk Conjur to secure CI/CD pipeline

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Proper uninstall, reinstall of Docker via pip

infamousjoeg opened this issue · comments

pip uninstall -y docker

pip install docker==2.6.1

Those two lines should be changed to:

pip uninstall docker -y
pip uninstall docker-py -y
pip install docker