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
af1bb34d
Kaydet (Commit)
af1bb34d
authored
Şub 18, 2014
tarafından
Maxime Petazzoni
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clarify port bindings documentation for non-TCP port bindings
Signed-off-by:
Maxime Petazzoni
<
max@signalfuse.com
>
üst
82f4c271
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
README.md
README.md
+8
-6
No files found.
README.md
Dosyayı görüntüle @
af1bb34d
...
@@ -253,12 +253,6 @@ open inside the container in the `Client.create_container` method.
...
@@ -253,12 +253,6 @@ open inside the container in the `Client.create_container` method.
c
.
create_container
(
'busybox'
,
'ls'
,
ports
=
[
1111
,
2222
])
c
.
create_container
(
'busybox'
,
'ls'
,
ports
=
[
1111
,
2222
])
```
```
If you wish to use UDP instead of TCP (default), you can declare it like such:
```
python
c
.
create_container
(
'busybox'
,
'ls'
,
ports
=
[(
1111
,
'udp'
),
2222
])
```
Bindings are then declared in the
`Client.start`
method.
Bindings are then declared in the
`Client.start`
method.
```
python
```
python
...
@@ -277,6 +271,14 @@ Or without host port assignment:
...
@@ -277,6 +271,14 @@ Or without host port assignment:
c
.
start
(
container_id
,
port_bindings
=
{
1111
:
(
'127.0.0.1'
,)})
c
.
start
(
container_id
,
port_bindings
=
{
1111
:
(
'127.0.0.1'
,)})
```
```
If you wish to use UDP instead of TCP (default), you need to declare it
like such in both the
`create_container()`
and
`start()`
calls:
```
python
container_id
=
c
.
create_container
(
'busybox'
,
'ls'
,
ports
=
[(
1111
,
'udp'
),
2222
])
c
.
start
(
container_id
,
port_bindings
=
{
'1111/udp'
:
4567
,
2222
:
None
})
```
Using volumes
Using volumes
=============
=============
...
...
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