From b42b41cbc4f3825c67af06fbd2568d514babe435 Mon Sep 17 00:00:00 2001 From: Caffeine Fueled Date: Wed, 1 Oct 2025 18:48:01 +0000 Subject: [PATCH] Add Podman --- Podman.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Podman.md diff --git a/Podman.md b/Podman.md new file mode 100644 index 0000000..d65a9de --- /dev/null +++ b/Podman.md @@ -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 +``` \ No newline at end of file