From cef13f9b079c7050d931e0aa0bc16238feee35e3 Mon Sep 17 00:00:00 2001 From: onyinyang Date: Wed, 17 Aug 2022 01:53:10 -0400 Subject: [PATCH] Updated run script to name container --- crates/lox-library/run-lox.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/lox-library/run-lox.sh b/crates/lox-library/run-lox.sh index 67c7e9b..19ca983 100755 --- a/crates/lox-library/run-lox.sh +++ b/crates/lox-library/run-lox.sh @@ -1,2 +1,2 @@ #!/bin/bash -docker run -it lox /bin/bash +docker run --name lox -it lox:latest /bin/bash