diff options
author | Paul Duncan <pabs@pablotron.org> | 2025-03-07 21:30:00 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2025-03-07 21:30:00 -0500 |
commit | d736e677571972ee3819c6950bb4188d72c84dd1 (patch) | |
tree | fd1f709498226ac603028fa28392e48fcc5358d6 | |
parent | b4f57b895779d0fd599baa3a1ec033eb13ef5b37 (diff) | |
download | jim-bot-d736e677571972ee3819c6950bb4188d72c84dd1.tar.xz jim-bot-d736e677571972ee3819c6950bb4188d72c84dd1.zip |
README.md: add usage section
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -4,5 +4,23 @@ Web interace which generates random corporate gibberish. Based on [pocket-jim][]. Ported from C to Go. +## Usage + +Build and run container using [Podman][]: + + # clone git repo + git clone https://git.pablotron.org/jim-bot + + # switch to cloned directory + cd jim-bot + + # build container + podman build -t jim-bot:latest . + + # run container + podman run -d -p 8080:8080 --restart=on-failure --name jim-bot jim-bot:latest + [pocket-jim]: https://pmdn.org/pocket-jim "pocket jim" +[podman]: https://podman.io/ + "podman" |