summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Magorsch <arzano@gentoo.org>2020-03-03 04:47:49 +0100
committerMax Magorsch <arzano@gentoo.org>2020-03-03 04:47:49 +0100
commit6740f6fa208042e6986a81d6cf5d4006e41e43ec (patch)
tree696de349df8fcfaa826ba7773eced711c7a87d7d /update-planet.sh
parentFix the permissions during update (diff)
downloadplanet-6740f6fa208042e6986a81d6cf5d4006e41e43ec.tar.gz
planet-6740f6fa208042e6986a81d6cf5d4006e41e43ec.tar.bz2
planet-6740f6fa208042e6986a81d6cf5d4006e41e43ec.zip
Split the planet and container updatev2.0.4
The planet data and container image can be updated seperately now. The container image may not be updated as regular as the planet data. Signed-off-by: Max Magorsch <arzano@gentoo.org>
Diffstat (limited to 'update-planet.sh')
-rwxr-xr-xupdate-planet.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/update-planet.sh b/update-planet.sh
new file mode 100755
index 0000000..7e4792f
--- /dev/null
+++ b/update-planet.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+USER=${1:-gplanet}
+GROUP=${2:-gplanet}
+
+mkdir -p htdocs data
+chown -R $USER:$GROUP htdocs data
+
+docker run --privileged \
+ --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 \
+ gentoo/planet-pluto:latest