From 23296bc97142b4ffdcf12af8c4236da6ebef21ea Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 12 May 2025 18:19:07 +0200 Subject: [PATCH] docs(README): migrate from docker.io to git.cryptic.systems --- README.md | 20 +++++++++----------- createrepo.sh | 2 +- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index fb37fd0..4e31ee9 100644 --- a/README.md +++ b/README.md @@ -2,19 +2,17 @@ [![Docker Pulls](https://img.shields.io/docker/pulls/volkerraschek/createrepo)](https://hub.docker.com/r/volkerraschek/createrepo) -This project contains all sources to build the container image -`docker.io/volkerraschek/createrepo` and the shell script `createrepo.sh`. +This project contains all sources to build the container image `git.cryptic.systems/volker.raschek/createrepo` and the +shell script `createrepo.sh`. -The primary goal of this project is to package the binary `createrepo` as -container image to provide the functionally for CI/CD workflows or for systems -which does contains the binary. +The primary goal of this project is to package the binary `createrepo` as container image to provide the functionally +for CI/CD workflows or for systems which does contains the binary. ## createrepo.sh -The shell script `createrepo.sh` is a wrapper for the binary `createrepo`, which -is not available depending on the distribution. It starts the container image -`docker.io/volkerraschek/createrepo` in the background to call the binary. For -this reason, a container runtime like `docker` or `podman` is necessary. +The shell script `createrepo.sh` is a wrapper for the binary `createrepo`, which is not available depending on the +distribution. It starts the container image `git.cryptic.systems/volker.raschek/createrepo` in the background to call +the binary. For this reason, a container runtime like `docker` or `podman` is necessary. ### Installation @@ -26,8 +24,8 @@ curl https://git.cryptic.systems/volker.raschek/createrepo-docker/raw/branch/mas ### Usage -The script forwards all arguments directly to the binary running inside the -container. For this reason, all arguments from the original binary can be used. +The script forwards all arguments directly to the binary running inside the container. For this reason, all arguments +from the original binary can be used. ```bash createrepo.sh --update . # Update local repository diff --git a/createrepo.sh b/createrepo.sh index 494ca36..d3d6ff2 100755 --- a/createrepo.sh +++ b/createrepo.sh @@ -4,7 +4,7 @@ set -e CONTAINER_RUNTIME=$(which docker) -CREATEREPO_IMAGE_FULLY_QUALIFIED="docker.io/volkerraschek/createrepo:0.17.2" # renovate: datasource=docker registryUrl=https://docker.io depName=volkerraschek/createrepo +CREATEREPO_IMAGE_FULLY_QUALIFIED="git.cryptic.systems/volker.raschek/createrepo:0.17.2" # renovate: datasource=docker registryUrl=https://docker.io depName=volkerraschek/createrepo CUSTOM_UID="${CUSTOM_UID:-"$(getent passwd "${USER}" | cut -d ':' -f 3)"}" CUSTOM_GID="${CUSTOM_GID:-"$(getent passwd "${USER}" | cut -d ':' -f 4)"}"