Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LakeDropsDrupalDev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Docker
LakeDropsDrupalDev
Commits
45a3d44e
Commit
45a3d44e
authored
5 years ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
#33
Improve reset feature
parent
0fe7c953
No related branches found
Branches containing commit
Tags
1.9.0-rc11
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
run/scripts/update
+9
-3
9 additions, 3 deletions
run/scripts/update
with
9 additions
and
3 deletions
run/scripts/update
+
9
−
3
View file @
45a3d44e
...
...
@@ -3,7 +3,11 @@
function
cleanup
{
NEWIMAGEID
=
$(
docker image
ls
-q
registry.lakedrops.com/docker/l3d/php-
${
PHP_VERSION
}
:
${
VERSION
}
|
head
-1
)
while
true
;
do
IMAGEID
=
$(
docker image
ls
-q
registry.lakedrops.com/docker/l3d/php-
${
PHP_VERSION
}
|
grep
-v
${
NEWIMAGEID
}
)
if
[[
$L3D_FORCE_UPDATE
-eq
1
]]
;
then
IMAGEID
=
$(
docker image
ls
-q
registry.lakedrops.com/docker/l3d/php-
${
PHP_VERSION
}
)
else
IMAGEID
=
$(
docker image
ls
-q
registry.lakedrops.com/docker/l3d/php-
${
PHP_VERSION
}
|
grep
-v
${
NEWIMAGEID
}
)
fi
if
[[
-n
${
IMAGEID
}
]]
;
then
while
true
;
do
ID
=
$(
docker container
ls
--all
-q
-f
ancestor
=
${
IMAGEID
}
)
...
...
@@ -15,8 +19,10 @@ function cleanup {
break
fi
done
echo
"Removing outdated image ..."
docker rmi
${
IMAGEID
}
>
/dev/null
if
[[
$L3D_FORCE_UPDATE
-eq
0
]]
;
then
echo
"Removing outdated image ..."
docker rmi
${
IMAGEID
}
>
/dev/null
fi
else
break
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment