4.2.0-debian-11-r0 release

This commit is contained in:
Bitnami Bot
2022-06-06 10:46:14 +00:00
committed by Bitnami Containers
parent 5f484e13d5
commit 31fb7dba58
6 changed files with 70 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
FROM docker.io/bitnami/minideb:bullseye
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV HOME="/" \
OS_ARCH="amd64" \
OS_FLAVOUR="debian-11" \
OS_NAME="linux"
COPY prebuildfs /
# Install required system packages and dependencies
RUN install_packages ca-certificates curl gzip iptables procps tar wget
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/kiam-4.2.0-0-linux-amd64-debian-11.tar.gz && \
echo "71d5543cc5be70fd4de32ce3038489b125158ddb8916cff63338ee1a009bb65e /tmp/bitnami/pkg/cache/kiam-4.2.0-0-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \
tar -zxf /tmp/bitnami/pkg/cache/kiam-4.2.0-0-linux-amd64-debian-11.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
rm -rf /tmp/bitnami/pkg/cache/kiam-4.2.0-0-linux-amd64-debian-11.tar.gz
RUN apt-get update && apt-get upgrade -y && \
rm -r /var/lib/apt/lists /var/cache/apt/archives
RUN chmod g+rwX /opt/bitnami
RUN update-alternatives --set iptables /usr/sbin/iptables-legacy && \
update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
ENV APP_VERSION="4.2.0" \
BITNAMI_APP_NAME="kiam" \
PATH="/opt/bitnami/kiam/bin:$PATH"
USER 1001
ENTRYPOINT [ "kiam" ]
CMD [ "--help" ]

View File

@@ -0,0 +1,4 @@
version: '2'
services:
kiam:
image: docker.io/bitnami/kiam:4

View File

@@ -0,0 +1,9 @@
{
"kiam": {
"arch": "amd64",
"digest": "71d5543cc5be70fd4de32ce3038489b125158ddb8916cff63338ee1a009bb65e",
"distro": "debian-11",
"type": "NAMI",
"version": "4.2.0-0"
}
}

View File

@@ -0,0 +1,3 @@
Bitnami containers ship with software bundles. You can find the licenses under:
/opt/bitnami/nami/COPYING
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt

View File

@@ -0,0 +1,24 @@
#!/bin/sh
set -e
set -u
export DEBIAN_FRONTEND=noninteractive
n=0
max=2
until [ $n -gt $max ]; do
set +e
(
apt-get update -qq &&
apt-get install -y --no-install-recommends "$@"
)
CODE=$?
set -e
if [ $CODE -eq 0 ]; then
break
fi
if [ $n -eq $max ]; then
exit $CODE
fi
echo "apt failed, retrying"
n=$(($n + 1))
done
rm -r /var/lib/apt/lists /var/cache/apt/archives

View File

@@ -31,7 +31,7 @@ $ docker run --name Kiam bitnami/kiam:latest
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`4`, `4-debian-10`, `4.2.0`, `4.2.0-debian-10-r202`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kiam/blob/4.2.0-debian-10-r202/4/debian-10/Dockerfile)
* [`4`, `4-debian-11`, `4.2.0`, `4.2.0-debian-11-r0`, `latest` (4/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-kiam/blob/4.2.0-debian-11-r0/4/debian-11/Dockerfile)
Subscribe to project updates by watching the [bitnami/kiam GitHub repo](https://github.com/bitnami/bitnami-docker-kiam).
@@ -52,7 +52,7 @@ $ docker pull bitnami/kiam:[TAG]
If you wish, you can also build the image yourself.
```console
$ docker build -t bitnami/kiam:latest 'https://github.com/bitnami/bitnami-docker-kiam.git#master:4/debian-10'
$ docker build -t bitnami/kiam:latest 'https://github.com/bitnami/bitnami-docker-kiam.git#master:4/debian-11'
```
## Configuration