From e9b600fc127761bfae6054a9be1d7e28a2dd202b7052719696b1e5d762542c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Tue, 16 Jul 2024 15:29:03 +0000 Subject: [PATCH] [info=756a1d8ccf8db2976ec2ab125dd19e40] OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/distribution-image?expand=0&rev=173 --- .gitattributes | 23 ++++++++ .gitignore | 1 + README.md | 52 ++++++++++++++++++ _service | 10 ++++ config.sh | 30 ++++++++++ distribution-image.changes | 109 +++++++++++++++++++++++++++++++++++++ distribution-image.kiwi | 79 +++++++++++++++++++++++++++ 7 files changed, 304 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.md create mode 100644 _service create mode 100644 config.sh create mode 100644 distribution-image.changes create mode 100644 distribution-image.kiwi diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/README.md b/README.md new file mode 100644 index 0000000..3dc1b59 --- /dev/null +++ b/README.md @@ -0,0 +1,52 @@ +# openSUSE Tumbleweed OCI Container Registry (Distribution): Suitable for running a local OCI registry +![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green) + +## Description +This container image allows to run a local OCI registry. + + +## Usage +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/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 +``` + +## Licensing + +`SPDX-License-Identifier: Apache-2.0` + +This documentation and the build recipe are licensed as Apache-2.0. +The container itself contains various software components under various open source licenses listed in the associated +Software Bill of Materials (SBOM). + +This image is based on [openSUSE Tumbleweed](https://get.opensuse.org/tumbleweed/). diff --git a/_service b/_service new file mode 100644 index 0000000..57e8627 --- /dev/null +++ b/_service @@ -0,0 +1,10 @@ + + + + + distribution-image.kiwi + %%registry_version%% + distribution-registry + minor + + \ No newline at end of file diff --git a/config.sh b/config.sh new file mode 100644 index 0000000..862b0cb --- /dev/null +++ b/config.sh @@ -0,0 +1,30 @@ +#!/bin/bash +# SPDX-License-Identifier: MIT +# SPDX-FileCopyrightText: (c) 2022-2024 SUSE LLC + +set -euo pipefail + +test -f /.kconfig && . /.kconfig +test -f /.profile && . /.profile + +echo "Configure image: [$kiwi_iname]..." + +#============================================ +# Import repositories' keys if rpm is present +#-------------------------------------------- +if command -v rpm > /dev/null; then + suseImportBuildKey +fi + + + +#======================================= +# Clean up after zypper if it is present +#--------------------------------------- +if command -v zypper > /dev/null; then + zypper -n clean +fi + +rm -rf /var/log/{lastlog,tallylog,zypper.log,zypp/history,YaST2} + +exit 0 diff --git a/distribution-image.changes b/distribution-image.changes new file mode 100644 index 0000000..96f0e55 --- /dev/null +++ b/distribution-image.changes @@ -0,0 +1,109 @@ +------------------------------------------------------------------- +Tue Jul 16 15:20:06 UTC 2024 - Dirk Mueller + +- Re-render templates (no functional change) + +------------------------------------------------------------------- +Mon Jun 10 15:11:25 UTC 2024 - Dirk Mueller + +- update README; reduce unnecessary newlines + +------------------------------------------------------------------- +Wed Jun 5 15:13:27 UTC 2024 - Dirk Mueller + +- Don't add artifacthub labels into labelprefix section + +------------------------------------------------------------------- +Tue Jun 4 12:35:15 UTC 2024 - Alexandre Vicenzi + +- Fix grammar mistake in licensing footer + +------------------------------------------------------------------- +Fri May 31 10:03:08 UTC 2024 - Fredrik Lönnegren + +- Correct configuration path in the README + +------------------------------------------------------------------- +Wed May 8 16:26:31 UTC 2024 - Dirk Mueller + +- README fixes - better titles and follow recommended document structure + +------------------------------------------------------------------- +Tue May 7 19:07:24 UTC 2024 - Dirk Mueller + +- extend READMEs; correct eula for application images + +------------------------------------------------------------------- +Fri Apr 19 10:31:30 UTC 2024 - Dirk Mueller + +- Bump kiwi schema version + +------------------------------------------------------------------- +Fri Apr 12 12:03:53 UTC 2024 - Dirk Mueller + +- Don't wipe everything in /var/log, only remove log files (this omits directories owned by packages) + +------------------------------------------------------------------- +Thu Apr 4 17:37:20 UTC 2024 - Dirk Mueller + +- add a shared licensing footer to the base container READMEs + +------------------------------------------------------------------- +Fri Mar 22 17:20:58 UTC 2024 - Dirk Mueller + +- add readme and logo urls + +------------------------------------------------------------------- +Wed Jan 17 14:29:14 UTC 2024 - Dan Čermák + +- Add initial README stub + +------------------------------------------------------------------- +Tue Jan 2 08:26:58 UTC 2024 - Dirk Mueller + +- update year to 2024 + +------------------------------------------------------------------- +Thu Sep 28 14:29:09 UTC 2023 - Dirk Mueller + +- add copyright and description header + +------------------------------------------------------------------- +Fri Jun 23 15:33:33 UTC 2023 - Dirk Mueller + +- label capitalization and related cleanups + +------------------------------------------------------------------- +Tue May 30 06:52:56 UTC 2023 - Dan Čermák + +- Add release stage and lifecycle url + +------------------------------------------------------------------- +Tue May 23 06:45:17 UTC 2023 - Dirk Mueller + +- Use standard naming for registry image + +------------------------------------------------------------------- +Wed Apr 5 16:55:15 UTC 2023 - Dirk Mueller + +- Shorten descriptions + +------------------------------------------------------------------- +Fri Mar 3 07:24:36 UTC 2023 - Dan Čermák + +- Add org.opencontainers.image.source label set to %SOURCEURL% + +------------------------------------------------------------------- +Mon Jan 2 12:22:14 UTC 2023 - Dan Čermák + +- Bump copyright year + +------------------------------------------------------------------- +Wed Dec 21 14:05:32 UTC 2022 - Dirk Müller + +- BuildTag sorting and consistency fixes + +------------------------------------------------------------------- +Wed Dec 21 14:04:07 UTC 2022 - Dirk Müller + +- Add :latest tag diff --git a/distribution-image.kiwi b/distribution-image.kiwi new file mode 100644 index 0000000..04be1d2 --- /dev/null +++ b/distribution-image.kiwi @@ -0,0 +1,79 @@ + + + + + + + + + openSUSE Project + https://www.suse.com/ + openSUSE Tumbleweed OCI Container Registry (Distribution) Container Image + + + + + + + + + + + + + + + + + + + + + + 2024 + zypper + false + true + + + + + + + + + + + + + \ No newline at end of file