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
507503cd
Kaydet (Commit)
507503cd
authored
Şub 24, 2016
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #952 from dnephin/fix_empty_env_vars
Format environment variables to match docker-cli.
üst
7214ab08
d9d84ce8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
4 deletions
+19
-4
utils.py
docker/utils/utils.py
+9
-4
container_test.py
tests/integration/container_test.py
+10
-0
No files found.
docker/utils/utils.py
Dosyayı görüntüle @
507503cd
...
...
@@ -821,6 +821,14 @@ def split_command(command):
return
shlex
.
split
(
command
)
def
format_environment
(
environment
):
def
format_env
(
key
,
value
):
if
not
value
:
return
key
return
'{key}={value}'
.
format
(
key
=
key
,
value
=
value
)
return
[
format_env
(
*
var
)
for
var
in
six
.
iteritems
(
environment
)]
def
create_container_config
(
version
,
image
,
command
,
hostname
=
None
,
user
=
None
,
detach
=
False
,
stdin_open
=
False
,
tty
=
False
,
mem_limit
=
None
,
ports
=
None
,
environment
=
None
,
...
...
@@ -836,10 +844,7 @@ def create_container_config(
entrypoint
=
split_command
(
entrypoint
)
if
isinstance
(
environment
,
dict
):
environment
=
[
six
.
text_type
(
'{0}={1}'
)
.
format
(
k
,
v
)
for
k
,
v
in
six
.
iteritems
(
environment
)
]
environment
=
format_environment
(
environment
)
if
labels
is
not
None
and
compare_version
(
'1.18'
,
version
)
<
0
:
raise
errors
.
InvalidVersion
(
...
...
tests/integration/container_test.py
Dosyayı görüntüle @
507503cd
...
...
@@ -370,6 +370,16 @@ class CreateContainerTest(helpers.BaseTestCase):
self
.
assertRaises
(
ValueError
,
self
.
client
.
create_host_config
,
pid_mode
=
'40'
)
def
test_create_with_environment_variable_no_value
(
self
):
container
=
self
.
client
.
create_container
(
BUSYBOX
,
[
'echo'
],
environment
=
{
'Foo'
:
None
,
'Other'
:
'one'
},
)
self
.
tmp_containers
.
append
(
container
[
'Id'
])
config
=
self
.
client
.
inspect_container
(
container
[
'Id'
])
assert
sorted
(
config
[
'Config'
][
'Env'
])
==
sorted
([
'Foo'
,
'Other=one'
])
class
VolumeBindTest
(
helpers
.
BaseTestCase
):
def
setUp
(
self
):
...
...
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