-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #967 from SUSE/for-deploy-6
🤖: Update build recipes for SP6
- Loading branch information
Showing
15 changed files
with
95 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# The SLE BCI 15 SP6 BusyBox Container image | ||
# SLE BCI-BusyBox: the smallest and GPLv3-free image | ||
|
||
15 SP6 BusyBox container based on the SLE Base Container Image. | ||
The SLE BCI-BusyBox image comes with the most basic tools provided by the BusyBox project. The image contains no GPLv3 licensed software. When using the image, keep in mind that there are differences between the BusyBox tools and the GNU Coreutils. This means that scripts written for a system that uses GNU Coreutils may require modification to work with BusyBox. | ||
|
||
## License | ||
SPDX-License-Identifier: MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
------------------------------------------------------------------- | ||
Fri Mar 22 17:21:10 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
- add readme and logo urls | ||
|
||
------------------------------------------------------------------- | ||
Sat Feb 3 10:25:19 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,40 @@ | ||
# The SLE OCI Container Registry (Distribution) Container image | ||
# The SLE BCI Distribution Image | ||
|
||
OCI Container Registry (Distribution) container based on the SLE 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.suse.com/suse/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
------------------------------------------------------------------- | ||
Fri Mar 22 17:21:10 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
- add readme and logo urls | ||
|
||
------------------------------------------------------------------- | ||
Sat Feb 3 10:25:19 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
------------------------------------------------------------------- | ||
Fri Mar 22 17:21:10 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
- add readme and logo urls | ||
|
||
------------------------------------------------------------------- | ||
Sat Feb 3 10:25:19 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
# The SLE BCI 15 SP6 Micro Container image | ||
# SLE BCI-Micro: Suitable for deploying static binaries | ||
|
||
A micro environment for containers based on the SLE Base Container Image. | ||
This image is similar to SLE BCI-Minimal but without the RPM package manager. | ||
The primary use case for the image is deploying static binaries produced | ||
externally or during multi-stage builds. As there is no straightforward | ||
way to install additional dependencies inside the container image, | ||
we recommend deploying a project using the SLE BCI-Minimal image only | ||
when the final build artifact bundles all dependencies and has no | ||
external runtime requirements (like Python or Ruby). | ||
|
||
## License | ||
SPDX-License-Identifier: MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
------------------------------------------------------------------- | ||
Fri Mar 22 17:21:10 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
- add readme and logo urls | ||
|
||
------------------------------------------------------------------- | ||
Sat Feb 3 10:25:19 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# The SLE BCI 15 SP6 Minimal Container image | ||
# SLE BCI-Minimal: Container image without Zypper | ||
|
||
15 SP6 Minimal container based on the SLE Base Container Image. | ||
SLE BCI-Minimal comes without Zypper, but it does have the RPM package manager installed. While RPM can install and remove packages, it lacks support for repositories and automated dependency resolution. The SLE BCI-Minimal image is therefore intended for creating deployment containers, and then installing the desired RPM packages inside the containers. While you can install the required dependencies, you need to download and resolve them manually. However, this approach is not recommended as it is prone to errors. | ||
|
||
## License | ||
SPDX-License-Identifier: MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
------------------------------------------------------------------- | ||
Fri Mar 22 17:21:10 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
- add readme and logo urls | ||
|
||
------------------------------------------------------------------- | ||
Sat Feb 3 10:25:19 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
sle15-kernel-module-devel-image/sle15-kernel-module-devel-image.changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
------------------------------------------------------------------- | ||
Fri Mar 22 17:21:10 UTC 2024 - Dirk Mueller <[email protected]> | ||
|
||
- add readme and logo urls | ||
|
||
------------------------------------------------------------------- | ||
Thu Mar 7 16:23:37 UTC 2024 - Dan Čermák <[email protected]> | ||
|
||
|