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

14
podman/umami.service Normal file
View file

@ -0,0 +1,14 @@
[Unit]
Description=Umami Container Stack via Podman-Compose
After=network.target
[Service]
Type=simple
WorkingDirectory=/opt/apps/umami
EnvironmentFile=/opt/apps/umami/.env
ExecStart=/usr/bin/podman-compose -f podman-compose.yml up -d
ExecStop=/usr/bin/podman-compose -f podman-compose.yml down
RemainAfterExit=yes
[Install]
WantedBy=default.target