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
3c9738a5
Kaydet (Commit)
3c9738a5
authored
Agu 02, 2018
tarafından
Anthony Sottile
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Allow user=0 to be passed in create_container
Signed-off-by:
Anthony Sottile
<
asottile@umich.edu
>
üst
64a1d8c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
containers.py
docker/types/containers.py
+1
-1
types_containers_test.py
tests/unit/types_containers_test.py
+6
-0
No files found.
docker/types/containers.py
Dosyayı görüntüle @
3c9738a5
...
...
@@ -578,7 +578,7 @@ class ContainerConfig(dict):
'Hostname'
:
hostname
,
'Domainname'
:
domainname
,
'ExposedPorts'
:
ports
,
'User'
:
six
.
text_type
(
user
)
if
user
else
None
,
'User'
:
six
.
text_type
(
user
)
if
user
is
not
None
else
None
,
'Tty'
:
tty
,
'OpenStdin'
:
stdin_open
,
'StdinOnce'
:
stdin_once
,
...
...
tests/unit/types_containers_test.py
0 → 100644
Dosyayı görüntüle @
3c9738a5
from
docker.types.containers
import
ContainerConfig
def
test_uid_0_is_not_elided
():
x
=
ContainerConfig
(
image
=
'i'
,
version
=
'v'
,
command
=
'true'
,
user
=
0
)
assert
x
[
'User'
]
==
'0'
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