From 3f800c983bdaaff1a092dbe56288df5ebc08226b Mon Sep 17 00:00:00 2001 From: Benjamin Balder Bach Date: Sun, 18 Feb 2024 13:53:54 +0100 Subject: [PATCH] Add another Docker example in README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9fd0bff..5c50a39 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,9 @@ To run `rat` inside Docker: # Build (you just need to do this once) docker build . -t rat:latest +# Run rat in interactive mode +docker run -it rat:latest + # Example of running rat with arguments docker run rat:latest rat --regex '(a|a)*b' ```