Automate immutable production deployments
Test and publish container images / test (push) Successful in 2m43s
Test and publish container images / publish (push) Successful in 2m56s

This commit is contained in:
BuTzZ
2026-07-29 13:00:50 +02:00
parent 2e84f4eae4
commit 2064570913
34 changed files with 1779 additions and 215 deletions
+9 -1
View File
@@ -113,7 +113,15 @@ install -m 0644 "$WM_DEPLOY_DIR/systemd/watermaps-route-update.service" /etc/sys
install -m 0644 "$WM_DEPLOY_DIR/systemd/watermaps-route-update.timer" /etc/systemd/system/
install -m 0644 "$WM_DEPLOY_DIR/systemd/watermaps-certbot-renew.service" /etc/systemd/system/
install -m 0644 "$WM_DEPLOY_DIR/systemd/watermaps-certbot-renew.timer" /etc/systemd/system/
install -m 0644 "$WM_DEPLOY_DIR/systemd/watermaps-auto-deploy.service" /etc/systemd/system/
install -m 0644 "$WM_DEPLOY_DIR/systemd/watermaps-auto-deploy.timer" /etc/systemd/system/
install -m 0755 \
"$WM_DEPLOY_DIR/scripts/auto-deploy-entrypoint.sh" \
/usr/local/sbin/watermaps-auto-deploy
systemctl daemon-reload
systemctl enable --now watermaps-route-update.timer watermaps-certbot-renew.timer
systemctl enable \
watermaps-route-update.timer \
watermaps-certbot-renew.timer
systemctl enable --now watermaps-auto-deploy.timer
wm_log "Server-Bootstrap abgeschlossen."