Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Drupal
drupalizer
Commits
749e0863
Commit
749e0863
authored
Nov 07, 2016
by
Victor Nikulshin
Browse files
Use fabric API to execute subtasks in docker.clean
parent
c6acd3e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
docker.py
View file @
749e0863
from
__future__
import
unicode_literals
from
fabric.api
import
task
,
roles
,
env
,
local
,
run
,
lcd
from
fabric.api
import
task
,
roles
,
env
,
local
,
run
,
lcd
,
execute
from
fabric.colors
import
red
,
green
from
fabric.contrib.console
import
confirm
...
...
@@ -231,9 +231,9 @@ def clean():
red
(
'This will stop, remove container and delete docker image '
+
'related to this project. Do you want to continue?'
),
default
=
False
)):
container_stop
(
)
container_remove
(
)
image_remove
(
)
execute
(
container_stop
)
execute
(
container_remove
)
execute
(
image_remove
)
@
task
...
...
Write
Preview
Supports
Markdown
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