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
cc766633
Unverified
Kaydet (Commit)
cc766633
authored
Agu 06, 2018
tarafından
Joffrey F
Kaydeden (comit)
GitHub
Agu 06, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #2103 from asottile/allow_uid_integer_0
Allow user=0 to be passed in create_container
üst
8d35ae69
3c9738a5
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 @
cc766633
...
...
@@ -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 @
cc766633
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