Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
beiran
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
79
Issues
79
List
Boards
Labels
Milestones
Merge Requests
13
Merge Requests
13
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
beiran
beiran
Commits
215a7178
Commit
215a7178
authored
Jul 10, 2019
by
Hilal Ozdemir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pylint fix
parent
682b2e5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
cli_docker.py
plugins/beiran_package_docker/cli_docker.py
+3
-2
No files found.
plugins/beiran_package_docker/cli_docker.py
View file @
215a7178
...
...
@@ -23,9 +23,9 @@ Beiran Docker Plugin command line interface module
"""
import
asyncio
import
sys
# import progressbar
import
click
import
sys
from
tabulate
import
tabulate
from
beiran_package_docker.util
import
DockerUtil
...
...
@@ -194,7 +194,8 @@ def image_pull(ctx, node: str, wait: bool, force: bool, noprogress: bool,
if
whole_image_only
:
return_value
=
loop
.
run_until_complete
(
_pull_with_progress
(
ctx
,
imagename
,
node
,
force
))
else
:
return_value
=
loop
.
run_until_complete
(
_pull_with_progress_distributed
(
ctx
,
imagename
,
node
,
force
))
return_value
=
loop
.
run_until_complete
(
_pull_with_progress_distributed
(
ctx
,
imagename
,
node
,
force
))
else
:
return_value
=
loop
.
run_until_complete
(
_pull_without_progress
(
ctx
,
imagename
,
node
,
wait
,
force
,
whole_image_only
))
...
...
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