We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cab9d8 commit 1a34340Copy full SHA for 1a34340
podman/domain/images_manager.py
@@ -324,6 +324,8 @@ def pull(
324
auth_config (Mapping[str, str]) – Override the credentials that are found in the
325
config for this request. auth_config should contain the username and password
326
keys to be valid.
327
+ compatMode (bool) – Return the same JSON payload as the Docker-compat endpoint.
328
+ Default: True.
329
decode (bool) – Decode the JSON data from the server into dicts.
330
Only applies with ``stream=True``
331
platform (str) – Platform in the format os[/arch[/variant]]
@@ -357,7 +359,8 @@ def pull(
357
359
358
360
params = {
361
"reference": repository,
- "tlsVerify": kwargs.get("tls_verify"),
362
+ "tlsVerify": kwargs.get("tls_verify", True),
363
+ "compatMode": kwargs.get("compatMode", True),
364
}
365
366
if all_tags:
0 commit comments