- Example podman build here: https://www.simpletest.nl/2021/11/03/uptime-kuma/
- Setting selinux contexts and podman hints here: https://lukas.zapletalovi.com/2020/01/deploy-photoprism-in-centos-80.html
Install tools; open firewall:
$ sudo dnf -y install podman policycoreutils-devel
$ sudo firewall-cmd --add-port=3001/tcp
$ podman volume create uptime-kuma
My podman build script:
#!/bin/bash /usr/bin/podman run \ --replace \ --restart=always \ --detach \ --publish 3001:3001/tcp \ --volume uptime-kuma:/app/data:z \ --name uptime-kuma \ docker.io/louislam/uptime-kuma:1
Update Uptime Kuma
podman pull docker.io/louislam/uptime-kuma:1
podman stop uptime-kuma # Might have to use systemctl --user stop container-uptime-kuma
podman rm uptime-kuma
- Run build commands above
- Log in to post comments
Private
Yes