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
eb0d8064
Kaydet (Commit)
eb0d8064
authored
Haz 28, 2017
tarafından
Joffrey F
Kaydeden (comit)
GitHub
Haz 28, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1672 from docker/2.4.2-release
2.4.2 release
üst
65e01f24
43f87e9f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
ports.py
docker/utils/ports.py
+5
-0
version.py
docker/version.py
+1
-1
change-log.md
docs/change-log.md
+2
-2
No files found.
docker/utils/ports.py
Dosyayı görüntüle @
eb0d8064
...
...
@@ -54,6 +54,11 @@ def port_range(start, end, proto, randomly_available_port=False):
def
split_port
(
port
):
if
hasattr
(
port
,
'legacy_repr'
):
# This is the worst hack, but it prevents a bug in Compose 1.14.0
# https://github.com/docker/docker-py/issues/1668
# TODO: remove once fixed in Compose stable
port
=
port
.
legacy_repr
()
port
=
str
(
port
)
match
=
PORT_SPEC
.
match
(
port
)
if
match
is
None
:
...
...
docker/version.py
Dosyayı görüntüle @
eb0d8064
version
=
"2.4.
1
"
version
=
"2.4.
2
"
version_info
=
tuple
([
int
(
d
)
for
d
in
version
.
split
(
"-"
)[
0
]
.
split
(
"."
)])
docs/change-log.md
Dosyayı görüntüle @
eb0d8064
Change log
==========
2.
4.
1
2.
4.
2
-----
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/3
5
?closed=1
)
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/3
6
?closed=1
)
### Bugfixes
...
...
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