From e37ac1e81a694390958fe1a91b127eb642ecc350 Mon Sep 17 00:00:00 2001 From: Maxwell Pung Date: Tue, 26 Nov 2024 23:38:36 -0600 Subject: [PATCH] Update README with some usage --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 26c2088..e31cc04 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,22 @@ # Looper -Experimenting with a simple container. +Experimenting with a simple container that prints counter to standard output. + +## Usage +Supported platforms: +* `linux/amd64` +* `linux/arm64` + +Run image: +```bash +podman run -d ghcr.io/resilem/looper:latest +``` + +Get container id/name: +```bash +podman ps +``` + +Check counter: +```bash +podman logs -f NAME_OF_CONTAINER_HERE +```