mirror of https://github.com/docker/docker-py.git
commit
30ff9f339c
|
@ -1,2 +1,2 @@
|
|||
version = "4.3.0-dev"
|
||||
version = "4.4.0-dev"
|
||||
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
|
||||
|
|
|
@ -1,6 +1,21 @@
|
|||
Change log
|
||||
==========
|
||||
|
||||
4.3.0
|
||||
-----
|
||||
|
||||
[List of PRs / issues for this release](https://github.com/docker/docker-py/milestone/64?closed=1)
|
||||
|
||||
### Features
|
||||
- Add `DeviceRequest` type to expose host resources such as GPUs
|
||||
- Add support for `DriverOpts` in EndpointConfig
|
||||
- Disable compression by default when using container.get_archive method
|
||||
|
||||
### Miscellaneous
|
||||
- Update default API version to v1.39
|
||||
- Update test engine version to 19.03.12
|
||||
|
||||
|
||||
4.2.2
|
||||
-----
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ FROM python:${PYTHON_VERSION}
|
|||
|
||||
ARG APT_MIRROR
|
||||
RUN sed -ri "s/(httpredir|deb).debian.org/${APT_MIRROR:-deb.debian.org}/g" /etc/apt/sources.list \
|
||||
&& sed -ri "s/(security).debian.org/${APT_MIRROR:-security.debian.org}/g" /etc/apt/sources.list
|
||||
&& sed -ri "s/(security).debian.org/${APT_MIRROR:-security.debian.org}/g" /etc/apt/sources.list
|
||||
|
||||
RUN apt-get update && apt-get -y install \
|
||||
gnupg2 \
|
||||
|
|
Loading…
Reference in New Issue