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
891c1032
Commit
891c1032
authored
5 years ago
by
jurgenhaas
Browse files
Options
Downloads
Plain Diff
Merge branch 'release/v1.10.2'
parents
3377d584
54bd68bd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+4
-1
4 additions, 1 deletion
CHANGELOG
run/scripts/update
+22
-23
22 additions, 23 deletions
run/scripts/update
with
26 additions
and
24 deletions
CHANGELOG
+
4
−
1
View file @
891c1032
v1.10.
1
2019-12-27
v1.10.
2
2019-12-27
------------------
Fix update scripts to remove old containers
v1.10.1 2019-12-27
------------------
Force rebuild to include Sodium support for PHP 7.2
This diff is collapsed.
Click to expand it.
run/scripts/update
+
22
−
23
View file @
891c1032
#!/bin/bash
function
removecontainer
{
if
[[
"
$1
"
==
"selective"
]]
;
then
IMAGEID
=
$(
docker image
ls
-q
registry.lakedrops.com/docker/l3d/
$2
|
grep
-v
${
NEWIMAGEID
}
)
else
IMAGEID
=
$(
docker image
ls
-q
registry.lakedrops.com/docker/l3d/
$2
)
fi
if
[[
-n
${
IMAGEID
}
]]
;
then
while
true
;
do
ID
=
$(
docker container
ls
--all
-q
-f
ancestor
=
${
IMAGEID
}
)
if
[[
-n
${
ID
}
]]
;
then
echo
"Removing outdated container ..."
docker
kill
${
ID
}
>
/dev/null
docker
rm
${
ID
}
>
/dev/null
else
break
fi
done
if
[[
"
$1
"
==
"selective"
]]
;
then
echo
"Removing outdated image ..."
docker rmi
${
IMAGEID
}
>
/dev/null
while
true
;
do
ID
=
$(
docker container
ls
--all
-q
-f
ancestor
=
$1
|
head
-1
)
if
[[
-n
${
ID
}
]]
;
then
echo
"Removing outdated container ..."
docker
kill
${
ID
}
>
/dev/null
docker
rm
${
ID
}
>
/dev/null
else
break
fi
done
if
[[
"
$2
"
==
"rmi"
]]
;
then
echo
"Removing outdated image ..."
docker rmi
$1
>
/dev/null
fi
}
function
cleanup
{
if
[[
$L3D_FORCE_UPDATE
-eq
1
]]
;
then
removecontainer all php-
${
PHP_VERSION
}
IMAGEIDS
=(
$(
docker image
ls
-q
registry.lakedrops.com/docker/l3d/php-
${
PHP_VERSION
}
)
)
for
IMAGEID
in
$IMAGEIDS
;
do
removecontainer
$IMAGEID
done
else
NEW
IMAGEID
=
$(
docker image
ls
-q
registry.lakedrops.com/docker/l3d/php-
${
PHP_VERSION
}
:
${
VERSION
}
|
head
-1
)
removecontainer
selective php-
${
PHP_VERSION
}
IMAGEID
=
$(
docker image
ls
-q
registry.lakedrops.com/docker/l3d/php-
${
PHP_VERSION
}
:
${
VERSION
}
|
head
-1
)
removecontainer
$IMAGEID
rmi
fi
removecontainer all node:8-jessie-slim
IMAGEIDS
=(
$(
docker image
ls
-q
node:8-jessie-slim
)
)
for
IMAGEID
in
$IMAGEIDS
;
do
removecontainer
$IMAGEID
done
}
if
[[
-n
${
PHP_VERSION
}
]]
;
then
...
...
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