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
1446b8c5
Kaydet (Commit)
1446b8c5
authored
Haz 12, 2015
tarafından
Aanand Prasad
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Allow binds to be specified as a list of strings
Signed-off-by:
Aanand Prasad
<
aanand.prasad@gmail.com
>
üst
be73aaf5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
0 deletions
+46
-0
utils.py
docker/utils/utils.py
+3
-0
volumes.md
docs/volumes.md
+13
-0
test.py
tests/test.py
+30
-0
No files found.
docker/utils/utils.py
Dosyayı görüntüle @
1446b8c5
...
...
@@ -174,6 +174,9 @@ def convert_port_bindings(port_bindings):
def
convert_volume_binds
(
binds
):
if
isinstance
(
binds
,
list
):
return
binds
result
=
[]
for
k
,
v
in
binds
.
items
():
if
isinstance
(
v
,
dict
):
...
...
docs/volumes.md
Dosyayı görüntüle @
1446b8c5
...
...
@@ -19,3 +19,16 @@ container_id = c.create_container(
})
)
```
You can alternatively specify binds as a list. This code is equivalent to the
example above:
```
python
container_id
=
c
.
create_container
(
'busybox'
,
'ls'
,
volumes
=
[
'/mnt/vol1'
,
'/mnt/vol2'
],
host_config
=
docker
.
utils
.
create_host_config
(
binds
=
[
'/home/user1/:/mnt/vol2'
,
'/var/www:/mnt/vol1:ro'
,
])
)
```
tests/test.py
Dosyayı görüntüle @
1446b8c5
...
...
@@ -808,6 +808,36 @@ class DockerClientTest(Cleanup, base.BaseTestCase):
DEFAULT_TIMEOUT_SECONDS
)
def
test_create_container_with_binds_list
(
self
):
try
:
self
.
client
.
create_container
(
'busybox'
,
'true'
,
host_config
=
create_host_config
(
binds
=
[
"/tmp:/mnt/1:ro"
,
"/tmp:/mnt/2"
,
],
)
)
except
Exception
as
e
:
self
.
fail
(
'Command should not raise exception: {0}'
.
format
(
e
))
args
=
fake_request
.
call_args
self
.
assertEqual
(
args
[
0
][
0
],
url_prefix
+
'containers/create'
)
expected_payload
=
self
.
base_create_payload
()
expected_payload
[
'HostConfig'
]
=
create_host_config
()
expected_payload
[
'HostConfig'
][
'Binds'
]
=
[
"/tmp:/mnt/1:ro"
,
"/tmp:/mnt/2"
,
]
self
.
assertEqual
(
json
.
loads
(
args
[
1
][
'data'
]),
expected_payload
)
self
.
assertEqual
(
args
[
1
][
'headers'
],
{
'Content-Type'
:
'application/json'
})
self
.
assertEqual
(
args
[
1
][
'timeout'
],
DEFAULT_TIMEOUT_SECONDS
)
def
test_create_container_with_port_binds
(
self
):
self
.
maxDiff
=
None
try
:
...
...
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