Added support for deployment using podman

This commit is contained in:
thomasdn 2025-04-17 18:36:56 +02:00
parent 38ab685143
commit 05f0e7ba76
5 changed files with 131 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#!/bin/bash
set -e
service_name="umami"
mkdir -p ~/.config/systemd/user
cp $service_name.service ~/.config/systemd/user
systemctl --user daemon-reload
systemctl --user enable $service_name.service
systemctl --user start $service_name.service