From 4aab0a64ee854e91e8666b83a10d61302aaac46e Mon Sep 17 00:00:00 2001 From: Thomas Merz Date: Mon, 25 Mar 2024 11:45:17 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20fix=20README=20to=20prevent=20'E?= =?UTF-8?q?RROR:=20failed=20to=20solve:=20invalid=20reference=20format:=20?= =?UTF-8?q?repository=20name=20must=20be=20lowercase'=20=20=20=20and=20'do?= =?UTF-8?q?cker:=20invalid=20reference=20format:=20repository=20name=20mus?= =?UTF-8?q?t=20be=20lowercase.'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- dist/run-in-container.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 dist/run-in-container.sh diff --git a/README.md b/README.md index f28c26d..9756904 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ make install clean #### Using [containers](https://www.docker.com/) ```console -docker build -t Y2Z/monolith . +docker build -t y2z/monolith . sudo install -b dist/run-in-container.sh /usr/local/bin/monolith ``` diff --git a/dist/run-in-container.sh b/dist/run-in-container.sh old mode 100644 new mode 100755 index 7ecdc53..4ca8b5b --- a/dist/run-in-container.sh +++ b/dist/run-in-container.sh @@ -7,4 +7,4 @@ if which podman 2>&1 > /dev/null; then DOCKER=podman fi -$DOCKER run --rm Y2Z/$PROG_NAME "$@" +$DOCKER run --rm y2z/$PROG_NAME "$@"