Push-and-update script.

This commit is contained in:
2026-02-03 10:36:43 +01:00
parent cee7348ab0
commit 7d2164137b

9
pull-and-update.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
set -e
# https://stackoverflow.com/a/1482133/270712
MYDIR=dirname -- "$( readlink -f -- "$0"; )";
pushd "$MYDIR"
git pull
docker compose up build
popd