summaryrefslogtreecommitdiff
path: root/docker/models/plugins.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix plugin model upgradeIan Fijolek2020-10-091-1/+1
| | | | | | | | | | | | | | | | When upgrading a plugin via the model interface, it would yield the following error: AttributeError: 'Plugin' object has no attribute '_reload' It appears that the proper method is `self.reload()`. This is what is used by all other methods in the class and base. I'm not finding any references to `_reload` apart from this instance in the project either. I've verified that this patch fixes the issue on my machine and all tests pass. Signed-off-by: Ian Fijolek <ian@iamthefij.com>
* Replace erroneous networks argument in containers.run with singular1433-run-networksJoffrey F2017-05-121-2/+2
| | | | | | | | network equivalent. Small docfixes Signed-off-by: Joffrey F <joffrey@docker.com>
* Add upgrade_plugin methodJoffrey F2017-02-231-0/+25
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Add create_plugin implementationJoffrey F2017-02-091-4/+6
| | | | Signed-off-by: Joffrey F <joffrey@docker.com>
* Add plugin API implementation to DockerClientJoffrey F2017-02-031-0/+173
Signed-off-by: Joffrey F <joffrey@docker.com>