Add Podman

Caffeine Fueled 2025-10-01 18:48:01 +00:00
parent 5185476d06
commit b42b41cbc4

10
Podman.md Normal file

@ -0,0 +1,10 @@
## Example Healthcheck
```bash
podman run -d --name web \
--health-cmd='curl "http://192.168.250.250:3001/api/push/FHahMOAw7p?status=up&msg=OK&ping=" || exit 1' \
--health-interval=60s \
--health-timeout=3s \
--health-retries=3 \
nginx:alpine
```