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
5d76e8e1
Kaydet (Commit)
5d76e8e1
authored
Mar 18, 2019
tarafından
Hannes Ljungberg
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Support sctp as protocol
Signed-off-by:
Hannes Ljungberg
<
hannes@5monkeys.se
>
üst
e0024b5b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
container.py
docker/api/container.py
+4
-3
containers.py
docker/models/containers.py
+2
-2
ports.py
docker/utils/ports.py
+1
-1
No files found.
docker/api/container.py
Dosyayı görüntüle @
5d76e8e1
...
...
@@ -915,9 +915,10 @@ class ContainerApiMixin(object):
if
'/'
in
private_port
:
return
port_settings
.
get
(
private_port
)
h_ports
=
port_settings
.
get
(
private_port
+
'/tcp'
)
if
h_ports
is
None
:
h_ports
=
port_settings
.
get
(
private_port
+
'/udp'
)
for
protocol
in
[
'tcp'
,
'udp'
,
'sctp'
]:
h_ports
=
port_settings
.
get
(
private_port
+
'/'
+
protocol
)
if
h_ports
:
break
return
h_ports
...
...
docker/models/containers.py
Dosyayı görüntüle @
5d76e8e1
...
...
@@ -649,8 +649,8 @@ class ContainerCollection(Collection):
The keys of the dictionary are the ports to bind inside the
container, either as an integer or a string in the form
``port/protocol``, where the protocol is either ``tcp``
or
``udp``.
``port/protocol``, where the protocol is either ``tcp``
,
``udp``
, or ``sctp``
.
The values of the dictionary are the corresponding ports to
open on the host, which can be either:
...
...
docker/utils/ports.py
Dosyayı görüntüle @
5d76e8e1
...
...
@@ -7,7 +7,7 @@ PORT_SPEC = re.compile(
r"(?P<ext>[\d]*)(-(?P<ext_end>[\d]+))?:"
# External range
")?"
r"(?P<int>[\d]+)(-(?P<int_end>[\d]+))?"
# Internal range
"(?P<proto>/(udp|tcp))?"
# Protocol
"(?P<proto>/(udp|tcp
|sctp
))?"
# Protocol
"$"
# Match full string
)
...
...
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