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
b3ae4d6e
Kaydet (Commit)
b3ae4d6e
authored
Mar 15, 2018
tarafından
Ben Doan
Kaydeden (comit)
Joffrey F
Nis 26, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
avoid race condition in containers.list
Signed-off-by:
Ben Doan
<
ben@bendoan.me
>
üst
827bd98d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
containers.py
docker/models/containers.py
+9
-2
No files found.
docker/models/containers.py
Dosyayı görüntüle @
b3ae4d6e
...
...
@@ -6,7 +6,7 @@ from ..api import APIClient
from
..constants
import
DEFAULT_DATA_CHUNK_SIZE
from
..errors
import
(
ContainerError
,
DockerException
,
ImageNotFound
,
create_unexpected_kwargs_error
NotFound
,
create_unexpected_kwargs_error
)
from
..types
import
HostConfig
from
..utils
import
version_gte
...
...
@@ -896,7 +896,14 @@ class ContainerCollection(Collection):
if
sparse
:
return
[
self
.
prepare_model
(
r
)
for
r
in
resp
]
else
:
return
[
self
.
get
(
r
[
'Id'
])
for
r
in
resp
]
containers
=
[]
for
r
in
resp
:
try
:
containers
.
append
(
self
.
get
(
r
[
'Id'
]))
# a container may have been removed while iterating
except
NotFound
:
pass
return
containers
def
prune
(
self
,
filters
=
None
):
return
self
.
client
.
api
.
prune_containers
(
filters
=
filters
)
...
...
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