0.12.0-debian-10-r77 release
This commit is contained in:
parent
e2d7938208
commit
9494191151
|
|
@ -16,7 +16,7 @@ RUN apt-get update && apt-get upgrade -y && \
|
|||
|
||||
COPY rootfs /
|
||||
ENV BITNAMI_APP_NAME="chartmuseum" \
|
||||
BITNAMI_IMAGE_VERSION="0.12.0-debian-10-r76" \
|
||||
BITNAMI_IMAGE_VERSION="0.12.0-debian-10-r77" \
|
||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/chartmuseum/bin:$PATH"
|
||||
|
||||
USER 1001
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
version: '2'
|
||||
services:
|
||||
chartmuseum:
|
||||
image: bitnami/chartmuseum:0
|
||||
image: docker.io/bitnami/chartmuseum:0-debian-10
|
||||
ports:
|
||||
- '8080:8080'
|
||||
volumes:
|
||||
|
|
|
|||
|
|
@ -54,7 +54,17 @@ wait_for_dns_lookup() {
|
|||
# Machine IP
|
||||
#########################
|
||||
get_machine_ip() {
|
||||
dns_lookup "$(hostname)"
|
||||
local -a ip_addresses
|
||||
local hostname
|
||||
hostname="$(hostname)"
|
||||
read -r -a ip_addresses <<< "$(dns_lookup "$hostname" | xargs echo)"
|
||||
if [[ "${#ip_addresses[@]}" -gt 1 ]]; then
|
||||
warn "Found more than one IP address associated to hostname ${hostname}: ${ip_addresses[*]}, will use ${ip_addresses[0]}"
|
||||
elif [[ "${#ip_addresses[@]}" -lt 1 ]]; then
|
||||
error "Could not find any IP address associated to hostname ${hostname}"
|
||||
exit 1
|
||||
fi
|
||||
echo "${ip_addresses[0]}"
|
||||
}
|
||||
|
||||
########################
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
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/).
|
||||
|
||||
|
||||
* [`0-debian-10`, `0.12.0-debian-10-r76`, `0`, `0.12.0`, `latest` (0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-chartmuseum/blob/0.12.0-debian-10-r76/0/debian-10/Dockerfile)
|
||||
* [`0-debian-10`, `0.12.0-debian-10-r77`, `0`, `0.12.0`, `latest` (0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-chartmuseum/blob/0.12.0-debian-10-r77/0/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/chartmuseum GitHub repo](https://github.com/bitnami/bitnami-docker-chartmuseum).
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
version: '2'
|
||||
services:
|
||||
chartmuseum:
|
||||
image: bitnami/chartmuseum:0
|
||||
image: docker.io/bitnami/chartmuseum:0-debian-10
|
||||
ports:
|
||||
- '8080:8080'
|
||||
volumes:
|
||||
|
|
|
|||
Loading…
Reference in New Issue