Author:
Hash:
Timestamp:
+11 -0 +/-1 browse
Kevin Schoon [me@kevinschoon.com]
1fbc93fe210a1c30d1169a4c0920dc118a5cbbed
Thu, 23 May 2024 15:48:17 +0000 (1.1 years ago)
1 | diff --git a/scripts/build_and_deploy.sh b/scripts/build_and_deploy.sh |
2 | new file mode 100755 |
3 | index 0000000..23f0921 |
4 | --- /dev/null |
5 | +++ b/scripts/build_and_deploy.sh |
6 | @@ -0,0 +1,11 @@ |
7 | + #!/bin/sh |
8 | + # Internal helper script to build and deploy Ayllu in one command |
9 | + |
10 | + scripts/build_container.sh containers/base && \ |
11 | + scripts/push_container.sh containers/base |
12 | + scripts/build_container.sh containers/multiuser && \ |
13 | + scripts/push_container.sh containers/multiuser |
14 | + |
15 | + /usr/lib/podman/quadlet --user "$HOME/.config/systemd/user" |
16 | + systemctl --user daemon-reload |
17 | + systemctl --user restart ayllu |