Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
59ced570
Kaydet (Commit)
59ced570
authored
Haz 23, 2014
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #245 from dotcloud/0.3.2-release
0.3.2 release
üst
a333a351
b6239605
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
3 deletions
+38
-3
ChangeLog.md
ChangeLog.md
+35
-1
README.md
README.md
+1
-1
version.py
docker/version.py
+1
-1
setup.py
setup.py
+1
-0
No files found.
ChangeLog.md
Dosyayı görüntüle @
59ced570
...
@@ -4,7 +4,41 @@ ChangeLog
...
@@ -4,7 +4,41 @@ ChangeLog
0.
3.2
0.
3.2
-----
-----
_In development._
*
Default API version is now 1.12 (support for docker 1.0)
*
Added new methods
`Client.get_image`
and
`Client.load_image`
(
`docker save`
and
`docker load`
)
*
Added new method
`Client.ping`
*
Added new method
`Client.resize`
*
`Client.build`
can now be provided with a custom context using the
`custom_context`
parameter.
*
Added support for
`memswap_limit`
parameter in
`create_container`
*
Added support for
`force`
parameter in
`remove_container`
*
Added support for
`force`
and
`noprune`
parameters in
`remove_image`
*
Added support for
`timestamps`
parameter in
`logs`
*
Added support for
`dns_search`
parameter in
`start`
*
Added support for
`network_mode`
parameter in
`start`
*
Added support for
`size`
parameter in
`containers`
*
Added support for
`volumes_from`
and
`dns`
parameters in
`start`
. As of
API version >= 1.10, these parameters no longer belong to
`create_container`
*
`Client.logs`
now uses the logs endpoint when API version is sufficient
### Bugfixes
*
Fixed a bug in pull where the
`repo:tag`
notation wasn't interpreted
properly
*
Fixed a bug in streaming methods with python 3 (unicode, bytes/str related)
*
Fixed a bug in
`Client.start`
where legacy notation for volumes wasn't
supported anymore.
### Miscellaneous
*
The client now raises
`DockerException`
s when appropriate. You can import
`DockerException`
(and its subclasses) from the
`docker.errors`
module to
catch them if needed.
*
`docker.APIError`
has been moved to the new
`docker.errors`
module as well.
*
`Client.insert`
is deprecated in API version > 1.11
*
Improved integration tests should now run much faster.
*
There is now a single source of truth for the docker-py version number.
0.
3.1
0.
3.1
-----
-----
...
...
README.md
Dosyayı görüntüle @
59ced570
...
@@ -20,7 +20,7 @@ a Docker daemon, simply do:
...
@@ -20,7 +20,7 @@ a Docker daemon, simply do:
```
python
```
python
c
=
docker
.
Client
(
base_url
=
'unix://var/run/docker.sock'
,
c
=
docker
.
Client
(
base_url
=
'unix://var/run/docker.sock'
,
version
=
'1.
9
'
,
version
=
'1.
12
'
,
timeout
=
10
)
timeout
=
10
)
```
```
...
...
docker/version.py
Dosyayı görüntüle @
59ced570
version
=
"0.3.2
-dev
"
version
=
"0.3.2"
setup.py
Dosyayı görüntüle @
59ced570
...
@@ -36,6 +36,7 @@ setup(
...
@@ -36,6 +36,7 @@ setup(
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3.2'
,
'Programming Language :: Python :: 3.2'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Topic :: Utilities'
,
'Topic :: Utilities'
,
'License :: OSI Approved :: Apache Software License'
,
'License :: OSI Approved :: Apache Software License'
,
],
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment