mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Added support for deployment using podman
This commit is contained in:
parent
38ab685143
commit
05f0e7ba76
5 changed files with 131 additions and 0 deletions
10
podman/install-systemd-user-service
Executable file
10
podman/install-systemd-user-service
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue