Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Merge requests
!2298
Actually run the clean-docker command instead of echoing it
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Actually run the clean-docker command instead of echoing it
make-clean-docker
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Bastien Abadie
requested to merge
make-clean-docker
into
master
11 months ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
05356498
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
05356498
Actually run the command instead of echoing it
· 05356498
Bastien Abadie
authored
11 months ago
Makefile
+
1
−
1
Options
@@ -54,7 +54,7 @@ release:
clean-docker
:
$(
eval
containers:
=
$(
shell docker ps
-a
-q
))
@
if
[
-n
"
$(
containers
)
"
]
;
then
\
echo
"Cleaning up past containers
\n
"
\
echo
"Cleaning up past containers
\n
"
;
\
docker
rm
-f
$(
containers
)
;
\
fi
Loading