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
dba1c454
Kaydet (Commit)
dba1c454
authored
Agu 22, 2014
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #291 from yograterol/master
Volumes parameter on create_container should be validated as string
üst
15b22e7d
23a57c29
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
2 deletions
+33
-2
client.py
docker/client.py
+8
-2
test.py
tests/test.py
+25
-0
No files found.
docker/client.py
Dosyayı görüntüle @
dba1c454
...
...
@@ -117,8 +117,8 @@ class Client(requests.Session):
else
:
units
=
{
'b'
:
1
,
'k'
:
1024
,
'm'
:
1024
*
1024
,
'g'
:
1024
*
1024
*
1024
}
'm'
:
1024
*
1024
,
'g'
:
1024
*
1024
*
1024
}
suffix
=
mem_limit
[
-
1
]
.
lower
()
# Check if the variable is a string representation of an int
...
...
@@ -158,6 +158,9 @@ class Client(requests.Session):
exposed_ports
[
'{0}/{1}'
.
format
(
port
,
proto
)]
=
{}
ports
=
exposed_ports
if
isinstance
(
volumes
,
six
.
string_types
):
volumes
=
[
volumes
,
]
if
isinstance
(
volumes
,
list
):
volumes_dict
=
{}
for
vol
in
volumes
:
...
...
@@ -500,6 +503,9 @@ class Client(requests.Session):
cpu_shares
=
None
,
working_dir
=
None
,
domainname
=
None
,
memswap_limit
=
0
):
if
isinstance
(
volumes
,
six
.
string_types
):
volumes
=
[
volumes
,
]
config
=
self
.
_container_config
(
image
,
command
,
hostname
,
user
,
detach
,
stdin_open
,
tty
,
mem_limit
,
ports
,
environment
,
dns
,
volumes
,
volumes_from
,
network_disabled
,
...
...
tests/test.py
Dosyayı görüntüle @
dba1c454
...
...
@@ -248,6 +248,31 @@ class DockerClientTest(Cleanup, unittest.TestCase):
self
.
assertEqual
(
args
[
1
][
'headers'
],
{
'Content-Type'
:
'application/json'
})
def
test_create_container_with_volume_string
(
self
):
mount_dest
=
'/mnt'
try
:
self
.
client
.
create_container
(
'busybox'
,
[
'ls'
,
mount_dest
],
volumes
=
mount_dest
)
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'
)
self
.
assertEqual
(
json
.
loads
(
args
[
1
][
'data'
]),
json
.
loads
(
'''
{"Tty": false, "Image": "busybox",
"Cmd": ["ls", "/mnt"], "AttachStdin": false,
"Volumes": {"/mnt": {}}, "Memory": 0,
"AttachStderr": true,
"AttachStdout": true, "OpenStdin": false,
"StdinOnce": false,
"NetworkDisabled": false,
"MemorySwap": 0}'''
))
self
.
assertEqual
(
args
[
1
][
'headers'
],
{
'Content-Type'
:
'application/json'
})
def
test_create_container_with_ports
(
self
):
try
:
self
.
client
.
create_container
(
'busybox'
,
'ls'
,
...
...
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