Skip to content

Commit

Permalink
🩹 fix README to prevent 'ERROR: failed to solve: invalid reference fo…
Browse files Browse the repository at this point in the history
…rmat: repository name must be lowercase'

   and 'docker: invalid reference format: repository name must be lowercase.'
  • Loading branch information
thomasmerz authored and snshn committed Mar 25, 2024
1 parent a2155e0 commit 4aab0a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion dist/run-in-container.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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 "$@"

0 comments on commit 4aab0a6

Please sign in to comment.