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
cc953cf8
Kaydet (Commit)
cc953cf8
authored
Nis 25, 2018
tarafından
Joffrey F
Kaydeden (comit)
Joffrey F
Nis 26, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
prune_builds test
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
f2c1ae37
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
16 deletions
+23
-16
build.py
docker/api/build.py
+17
-16
api_build_test.py
tests/integration/api_build_test.py
+6
-0
No files found.
docker/api/build.py
Dosyayı görüntüle @
cc953cf8
...
...
@@ -264,6 +264,23 @@ class BuildApiMixin(object):
return
self
.
_stream_helper
(
response
,
decode
=
decode
)
@utils.minimum_version
(
'1.31'
)
def
prune_builds
(
self
):
"""
Delete the builder cache
Returns:
(dict): A dictionary containing information about the operation's
result. The ``SpaceReclaimed`` key indicates the amount of
bytes of disk space reclaimed.
Raises:
:py:class:`docker.errors.APIError`
If the server returns an error.
"""
url
=
self
.
_url
(
"/build/prune"
)
return
self
.
_result
(
self
.
_post
(
url
),
True
)
def
_set_auth_headers
(
self
,
headers
):
log
.
debug
(
'Looking for auth config'
)
...
...
@@ -305,22 +322,6 @@ class BuildApiMixin(object):
else
:
log
.
debug
(
'No auth config found'
)
@utils.minimum_version
(
'1.31'
)
def
prune_build
(
self
):
"""
Delete builder cache
Returns:
(dict): A dict containing
the amount of disk space reclaimed in bytes.
Raises:
:py:class:`docker.errors.APIError`
If the server returns an error.
"""
url
=
self
.
_url
(
"/build/prune"
)
return
self
.
_result
(
self
.
_post
(
url
),
True
)
def
process_dockerfile
(
dockerfile
,
path
):
if
not
dockerfile
:
...
...
tests/integration/api_build_test.py
Dosyayı görüntüle @
cc953cf8
...
...
@@ -503,3 +503,9 @@ class BuildTest(BaseAPIIntegrationTest):
assert
sorted
(
[
b
'.'
,
b
'..'
,
b
'file.txt'
,
b
'custom.dockerfile'
]
)
==
sorted
(
lsdata
)
@requires_api_version
(
'1.31'
)
def
test_prune_builds
(
self
):
prune_result
=
self
.
client
.
prune_builds
()
assert
'SpaceReclaimed'
in
prune_result
assert
isinstance
(
prune_result
[
'SpaceReclaimed'
],
int
)
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