docs(README): use git.cryptic.systems
Some checks failed
Release / sync-to-hub-docker-io (push) Blocked by required conditions
Lint Markdown files / markdown-lint (push) Failing after 5s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 13s
Release / push-amd64 (push) Has been cancelled

This commit is contained in:
Markus Pesch 2025-05-13 18:34:25 +02:00
parent 6ebfca1f92
commit 191d8e99f3
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982

View File

@ -50,7 +50,7 @@ To use this image for building golang applications execute this in your root fol
$ docker run \ $ docker run \
--rm \ --rm \
--volume ${PWD}:/workspace \ --volume ${PWD}:/workspace \
volkerraschek/build-image:latest \ git.cryptic.systems/volker.raschek/build-image:latest \
go build go build
``` ```
@ -64,7 +64,7 @@ $ docker run \
--env MAKEPKG_PACKAGER="Max Mustermann <max.mustermann@example.com" \ --env MAKEPKG_PACKAGER="Max Mustermann <max.mustermann@example.com" \
--rm \ --rm \
--volume ${PWD}:/workspace \ --volume ${PWD}:/workspace \
volkerraschek/build-image:latest \ git.cryptic.systems/volker.raschek/build-image:latest \
makepkg makepkg
``` ```
@ -76,6 +76,6 @@ If you want to compile instead go rust sourcecode, than you can do it similar to
$ docker run \ $ docker run \
--rm \ --rm \
--volume ${PWD}:/workspace \ --volume ${PWD}:/workspace \
volkerraschek/build-image:latest \ git.cryptic.systems/volker.raschek/build-image:latest \
cargo build --release cargo build --release
``` ```