mirror of https://github.com/docker/docker-py.git
Merge pull request #1301 from biniambekele/master
Fix ContainerApiMixin.copy with dict container arg
This commit is contained in:
commit
0591477642
|
@ -100,7 +100,7 @@ class ContainerApiMixin(object):
|
|||
DeprecationWarning
|
||||
)
|
||||
res = self._post_json(
|
||||
self._url("/containers/{0}/copy".format(container)),
|
||||
self._url("/containers/{0}/copy", container),
|
||||
data={"Resource": resource},
|
||||
stream=True
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue