<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/docker-py.git, branch prune_build_cache</title>
<subtitle>github.com: dotcloud/docker-py.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/'/>
<entry>
<title>Add optional parameters for pruning build cache.</title>
<updated>2021-04-06T14:23:54+00:00</updated>
<author>
<name>Steve Swor</name>
<email>sworisbreathing@users.noreply.github.com</email>
</author>
<published>2020-11-25T03:32:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=37e930f4d059b30261d24c5ddd315cef25e2fb87'/>
<id>37e930f4d059b30261d24c5ddd315cef25e2fb87</id>
<content type='text'>
Signed-off-by: Steve Swor &lt;sworisbreathing@users.noreply.github.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Steve Swor &lt;sworisbreathing@users.noreply.github.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2476 from feliperuhland/add-search-images-limit</title>
<updated>2021-04-06T13:43:07+00:00</updated>
<author>
<name>Anca Iordache</name>
<email>aiordache@users.noreply.github.com</email>
</author>
<published>2021-04-06T13:43:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=18fdc23b7cca98408f88beec3426c27070e9393f'/>
<id>18fdc23b7cca98408f88beec3426c27070e9393f</id>
<content type='text'>
Add limit parameter to image search endpoint</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add limit parameter to image search endpoint</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2799 from feliperuhland/fix-low-level-pull-example</title>
<updated>2021-04-06T13:41:44+00:00</updated>
<author>
<name>Anca Iordache</name>
<email>aiordache@users.noreply.github.com</email>
</author>
<published>2021-04-06T13:41:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=8813c3d2e0518687ff068cbac1cbaa7283d04772'/>
<id>8813c3d2e0518687ff068cbac1cbaa7283d04772</id>
<content type='text'>
Fix images low-level documentation examples</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix images low-level documentation examples</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2801 from feliperuhland/fix-low-level-containers-example</title>
<updated>2021-04-06T13:40:39+00:00</updated>
<author>
<name>Anca Iordache</name>
<email>aiordache@users.noreply.github.com</email>
</author>
<published>2021-04-06T13:40:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=7a2ec959518a168d87476ccf544ee9e6a0368da3'/>
<id>7a2ec959518a168d87476ccf544ee9e6a0368da3</id>
<content type='text'>
Fix containers low-level documentation examples</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix containers low-level documentation examples</pre>
</div>
</content>
</entry>
<entry>
<title>Fix containers low-level documentation examples</title>
<updated>2021-04-05T13:31:43+00:00</updated>
<author>
<name>Felipe Ruhland</name>
<email>felipe.ruhland@gmail.com</email>
</author>
<published>2021-04-05T13:31:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=ac9ae1f249c7635b3fd12b12d293f1c9848aaef5'/>
<id>ac9ae1f249c7635b3fd12b12d293f1c9848aaef5</id>
<content type='text'>
I realize that low-level documentation has outdated examples, so I
created issue #2800 to fix that

Signed-off-by: Felipe Ruhland &lt;felipe.ruhland@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I realize that low-level documentation has outdated examples, so I
created issue #2800 to fix that

Signed-off-by: Felipe Ruhland &lt;felipe.ruhland@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix images low-level documentation examples</title>
<updated>2021-04-05T13:01:09+00:00</updated>
<author>
<name>Felipe Ruhland</name>
<email>felipe.ruhland@gmail.com</email>
</author>
<published>2021-04-05T12:57:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=a34dd8b1a987bfd98882197c909a24a963b68a8f'/>
<id>a34dd8b1a987bfd98882197c909a24a963b68a8f</id>
<content type='text'>
I realize that the documentation of low-level `images` was outdated when
answering issue #2798

The issue can reproduce it with a simple test:

```py
In [1]: import docker
In [2]: client = docker.from_env()
In [3]: client.pull
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
&lt;ipython-input-3-d0931943ca5d&gt; in &lt;module&gt;
----&gt; 1 client.pull

~/docker-py/docker/client.py in __getattr__(self, name)
    219                      "object APIClient. See the low-level API section of the "
    220                      "documentation for more details.")
--&gt; 221         raise AttributeError(' '.join(s))
    222
    223

AttributeError: 'DockerClient' object has no attribute 'pull' In Docker SDK for Python 2.0, this method is now on the object APIClient. See the low-level API section of the documentation for more details.

In [4]: client.push
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
&lt;ipython-input-4-f7d5b860a184&gt; in &lt;module&gt;
----&gt; 1 client.push

~/docker-py/docker/client.py in __getattr__(self, name)
    219                      "object APIClient. See the low-level API section of the "
    220                      "documentation for more details.")
--&gt; 221         raise AttributeError(' '.join(s))
    222
    223

AttributeError: 'DockerClient' object has no attribute 'push' In Docker SDK for Python 2.0, this method is now on the object APIClient. See the low-level API section of the documentation for more details.

In [5]: client.tag
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
&lt;ipython-input-5-043bdfd088ca&gt; in &lt;module&gt;
----&gt; 1 client.tag

~/docker-py/docker/client.py in __getattr__(self, name)
    219                      "object APIClient. See the low-level API section of the "
    220                      "documentation for more details.")
--&gt; 221         raise AttributeError(' '.join(s))
    222
    223

AttributeError: 'DockerClient' object has no attribute 'tag' In Docker SDK for Python 2.0, this method is now on the object APIClient. See the low-level API section of the documentation for more details.

In [6]: client.get_image
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
&lt;ipython-input-6-477c12713276&gt; in &lt;module&gt;
----&gt; 1 client.get_image

~/docker-py/docker/client.py in __getattr__(self, name)
    219                      "object APIClient. See the low-level API section of the "
    220                      "documentation for more details.")
--&gt; 221         raise AttributeError(' '.join(s))
    222
    223

AttributeError: 'DockerClient' object has no attribute 'get_image' In Docker SDK for Python 2.0, this method is now on the object APIClient. See the low-level API section of the documentation for more details.

In [7]: client.api.get_image
Out[7]: &lt;bound method ImageApiMixin.get_image of &lt;docker.api.client.APIClient object at 0x7fad6a2037c0&gt;&gt;

In [8]: client.api.tag
Out[8]: &lt;bound method ImageApiMixin.tag of &lt;docker.api.client.APIClient object at 0x7fad6a2037c0&gt;&gt;

In [9]: client.api.pull
Out[9]: &lt;bound method ImageApiMixin.pull of &lt;docker.api.client.APIClient object at 0x7fad6a2037c0&gt;&gt;

In [10]: client.api.push
Out[10]: &lt;bound method ImageApiMixin.push of &lt;docker.api.client.APIClient object at 0x7fad6a2037c0&gt;&gt;
```

Signed-off-by: Felipe Ruhland &lt;felipe.ruhland@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I realize that the documentation of low-level `images` was outdated when
answering issue #2798

The issue can reproduce it with a simple test:

```py
In [1]: import docker
In [2]: client = docker.from_env()
In [3]: client.pull
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
&lt;ipython-input-3-d0931943ca5d&gt; in &lt;module&gt;
----&gt; 1 client.pull

~/docker-py/docker/client.py in __getattr__(self, name)
    219                      "object APIClient. See the low-level API section of the "
    220                      "documentation for more details.")
--&gt; 221         raise AttributeError(' '.join(s))
    222
    223

AttributeError: 'DockerClient' object has no attribute 'pull' In Docker SDK for Python 2.0, this method is now on the object APIClient. See the low-level API section of the documentation for more details.

In [4]: client.push
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
&lt;ipython-input-4-f7d5b860a184&gt; in &lt;module&gt;
----&gt; 1 client.push

~/docker-py/docker/client.py in __getattr__(self, name)
    219                      "object APIClient. See the low-level API section of the "
    220                      "documentation for more details.")
--&gt; 221         raise AttributeError(' '.join(s))
    222
    223

AttributeError: 'DockerClient' object has no attribute 'push' In Docker SDK for Python 2.0, this method is now on the object APIClient. See the low-level API section of the documentation for more details.

In [5]: client.tag
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
&lt;ipython-input-5-043bdfd088ca&gt; in &lt;module&gt;
----&gt; 1 client.tag

~/docker-py/docker/client.py in __getattr__(self, name)
    219                      "object APIClient. See the low-level API section of the "
    220                      "documentation for more details.")
--&gt; 221         raise AttributeError(' '.join(s))
    222
    223

AttributeError: 'DockerClient' object has no attribute 'tag' In Docker SDK for Python 2.0, this method is now on the object APIClient. See the low-level API section of the documentation for more details.

In [6]: client.get_image
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
&lt;ipython-input-6-477c12713276&gt; in &lt;module&gt;
----&gt; 1 client.get_image

~/docker-py/docker/client.py in __getattr__(self, name)
    219                      "object APIClient. See the low-level API section of the "
    220                      "documentation for more details.")
--&gt; 221         raise AttributeError(' '.join(s))
    222
    223

AttributeError: 'DockerClient' object has no attribute 'get_image' In Docker SDK for Python 2.0, this method is now on the object APIClient. See the low-level API section of the documentation for more details.

In [7]: client.api.get_image
Out[7]: &lt;bound method ImageApiMixin.get_image of &lt;docker.api.client.APIClient object at 0x7fad6a2037c0&gt;&gt;

In [8]: client.api.tag
Out[8]: &lt;bound method ImageApiMixin.tag of &lt;docker.api.client.APIClient object at 0x7fad6a2037c0&gt;&gt;

In [9]: client.api.pull
Out[9]: &lt;bound method ImageApiMixin.pull of &lt;docker.api.client.APIClient object at 0x7fad6a2037c0&gt;&gt;

In [10]: client.api.push
Out[10]: &lt;bound method ImageApiMixin.push of &lt;docker.api.client.APIClient object at 0x7fad6a2037c0&gt;&gt;
```

Signed-off-by: Felipe Ruhland &lt;felipe.ruhland@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2795 from feliperuhland/upgrade-cryptography-to-3.4.7</title>
<updated>2021-04-03T17:48:58+00:00</updated>
<author>
<name>Ulysses Souza</name>
<email>ulysses.souza@docker.com</email>
</author>
<published>2021-04-03T17:48:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=0892fcfc12c6c83a10fd23e08c39464784f50632'/>
<id>0892fcfc12c6c83a10fd23e08c39464784f50632</id>
<content type='text'>
Upgrade cryptography library to version 3.4.7</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Upgrade cryptography library to version 3.4.7</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade cryptography library to version 3.4.7</title>
<updated>2021-04-02T00:51:20+00:00</updated>
<author>
<name>Felipe Ruhland</name>
<email>felipe.ruhland@gmail.com</email>
</author>
<published>2021-04-02T00:30:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=2403774e76b279ecdd7238d35f04def6fb1ca8b8'/>
<id>2403774e76b279ecdd7238d35f04def6fb1ca8b8</id>
<content type='text'>
Dependabot opened a pull request
93bcc0497d8302aa2d78bd7ef756fc2ff3fd0912 to upgrade cryptography from
2.3 to 3.2.

However, only `requirements.txt` was updated.
The extra requirements were kept outdated.

This commit was made to update the library to the last version.

Fix #2791

Signed-off-by: Felipe Ruhland &lt;felipe.ruhland@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Dependabot opened a pull request
93bcc0497d8302aa2d78bd7ef756fc2ff3fd0912 to upgrade cryptography from
2.3 to 3.2.

However, only `requirements.txt` was updated.
The extra requirements were kept outdated.

This commit was made to update the library to the last version.

Fix #2791

Signed-off-by: Felipe Ruhland &lt;felipe.ruhland@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2781 from feliperuhland/fix-readme-badge</title>
<updated>2021-03-29T20:06:31+00:00</updated>
<author>
<name>Ulysses Souza</name>
<email>ulysses.souza@docker.com</email>
</author>
<published>2021-03-29T20:06:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=a60bd9a4548dbf8174dd2abbc426066358d434cc'/>
<id>a60bd9a4548dbf8174dd2abbc426066358d434cc</id>
<content type='text'>
Fix continuous integration status badged</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix continuous integration status badged</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2788 from docker/set-minimal-python-to-3_6</title>
<updated>2021-03-25T08:59:41+00:00</updated>
<author>
<name>Anca Iordache</name>
<email>aiordache@users.noreply.github.com</email>
</author>
<published>2021-03-25T08:59:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/docker-py.git/commit/?id=30d482d359776d863f13bc2a9a6f76c19b7b75af'/>
<id>30d482d359776d863f13bc2a9a6f76c19b7b75af</id>
<content type='text'>
Make python 3.6 the minimum version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make python 3.6 the minimum version</pre>
</div>
</content>
</entry>
</feed>
