Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package distribution-image for openSUSE:Factory checked in at 2024-03-25 21:08:07 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/distribution-image (Old) and /work/SRC/openSUSE:Factory/.distribution-image.new.1905 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "distribution-image" Mon Mar 25 21:08:07 2024 rev:5 rq:1160851 version:2024 Changes: -------- --- /work/SRC/openSUSE:Factory/distribution-image/distribution-image.changes 2024-01-18 21:52:57.347790926 +0100 +++ /work/SRC/openSUSE:Factory/.distribution-image.new.1905/distribution-image.changes 2024-03-25 21:10:25.074073040 +0100 @@ -1,0 +2,5 @@ +Fri Mar 22 17:20:58 UTC 2024 - Dirk Mueller <[email protected]> + +- add readme and logo urls + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ README.md ++++++ --- /var/tmp/diff_new_pack.TD3Cq0/_old 2024-03-25 21:10:26.258116514 +0100 +++ /var/tmp/diff_new_pack.TD3Cq0/_new 2024-03-25 21:10:26.258116514 +0100 @@ -1,4 +1,42 @@ -# The openSUSE Tumbleweed OCI Container Registry (Distribution) Container image +# The SLE BCI Distribution Image -OCI Container Registry (Distribution) container based on the openSUSE Tumbleweed Base Container Image. +This container image allows to run a local OCI registry. Before you start the container, +you need to create a `config.yml` with the following content: + +```yaml +--- +version: 0.1 +log: + level: info +storage: + filesystem: + rootdirectory: /var/lib/docker-registry +http: + addr: 0.0.0.0:5000 +``` + +You can also create an empty directory for storing the images outside the container: + +```bash +mkdir -p /var/lib/docker-registry +``` + +Then you can start the container with the following command: + +```bash +podman run -d --restart=always -p 5000:5000 -v /path/to/config.yml:/etc/docker/registry/config.yml \ + -v /var/lib/docker-registry:/var/lib/docker-registry --name registry registry.opensuse.org/opensuse/registry:%%registry_version%%-%RELEASE% +``` + +The registry is available at `http://localhost:5000`. To keep the registry running after a reboot, create a systemd service as follows: + +```bash +sudo podman generate systemd registry > /etc/systemd/system/registry.service +sudo systemctl enable --now registry +``` + + +## License + SPDX-License-Identifier: Apache-2.0 +(No newline at EOF)
