🩹 fix README to prevent 'ERROR: failed to solve: invalid reference format: repository name must be lowercase'

and 'docker: invalid reference format: repository name must be lowercase.'
This commit is contained in:
Thomas Merz 2024-03-25 11:45:17 +01:00 committed by Sunshine
parent a2155e0af6
commit 4aab0a64ee
2 changed files with 2 additions and 2 deletions

View File

@ -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
```

2
dist/run-in-container.sh vendored Normal file → Executable file
View File

@ -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 "$@"