diff options
author | Max Magorsch <arzano@gentoo.org> | 2020-11-29 00:20:52 +0000 |
---|---|---|
committer | Max Magorsch <arzano@gentoo.org> | 2020-11-29 00:20:52 +0000 |
commit | 79ac972001c1b7496c7b8b5e15080c6a7bce631e (patch) | |
tree | 03f3e0c4e384f82ff99e15951ffd451c9849100c | |
parent | Fix another minor bug in the update script (diff) | |
download | planet-79ac972001c1b7496c7b8b5e15080c6a7bce631e.tar.gz planet-79ac972001c1b7496c7b8b5e15080c6a7bce631e.tar.bz2 planet-79ac972001c1b7496c7b8b5e15080c6a7bce631e.zip |
Fix the container name used for planet plutov2.0.16
Signed-off-by: Max Magorsch <arzano@gentoo.org>
-rwxr-xr-x | update-planet.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update-planet.sh b/update-planet.sh index d6470d67..828ace52 100755 --- a/update-planet.sh +++ b/update-planet.sh @@ -16,5 +16,5 @@ docker run \ --restart no \ --mount type=bind,source="$(pwd)"/htdocs,target=/var/www/planet.gentoo.org/build \ --mount type=bind,source="$(pwd)"/data,target=/var/www/planet.gentoo.org/data \ - --name ${IMAGE}_${TS} \ + --name planet-pluto_${TS} \ ${IMAGE}:${TAG} |