mirror of
https://github.com/ansible-collections/community.docker.git
synced 2026-07-30 20:23:49 +00:00
Set minimal Docker API version for chdir to 1.35. (#253)
This commit is contained in:
@@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- "docker_container_exec - disallow using the ``chdir`` option for Docker API before 1.35 (https://github.com/ansible-collections/community.docker/pull/253)."
|
||||||
@@ -164,7 +164,7 @@ def main():
|
|||||||
)
|
)
|
||||||
|
|
||||||
option_minimal_versions = dict(
|
option_minimal_versions = dict(
|
||||||
chdir=dict(docker_py_version='3.0.0'),
|
chdir=dict(docker_py_version='3.0.0', docker_api_version='1.35'),
|
||||||
)
|
)
|
||||||
|
|
||||||
client = AnsibleDockerClient(
|
client = AnsibleDockerClient(
|
||||||
|
|||||||
Reference in New Issue
Block a user