1
0

initial version

This commit is contained in:
2022-09-09 11:37:37 +02:00
commit 86a763e0d9
5 changed files with 84 additions and 0 deletions

14
rebuild.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
updates_available () {
docker pull $1
if test "$(docker run -it --rm $1 /bin/sh -c 'apt -qqq update && apt -qq list --upgradable')" != ""; then
return 0
else
return 1
fi
}
if updates_available pommib/jumpbox:latest; then
./build.sh
fi