mirror of
https://github.com/bitnami/containers.git
synced 2026-02-10 11:47:39 +08:00
2.31.1-debian-10-r11 release
This commit is contained in:
@@ -14,7 +14,7 @@ RUN /build/bitnami-user.sh
|
||||
|
||||
COPY rootfs /
|
||||
ENV BITNAMI_APP_NAME="git" \
|
||||
BITNAMI_IMAGE_VERSION="2.31.1-debian-10-r10" \
|
||||
BITNAMI_IMAGE_VERSION="2.31.1-debian-10-r11" \
|
||||
NSS_WRAPPER_LIB="/opt/bitnami/common/lib/libnss_wrapper.so" \
|
||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/git/bin:$PATH"
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
version: '2'
|
||||
services:
|
||||
git:
|
||||
image: docker.io/bitnami/git:2-debian-10
|
||||
image: docker.io/bitnami/git:2
|
||||
|
||||
@@ -106,5 +106,5 @@ indent() {
|
||||
for ((i = 0; i < num; i++)); do
|
||||
indent_unit="${indent_unit}${char}"
|
||||
done
|
||||
echo "$string" | sed "s/^/${indent_unit}/"
|
||||
echo "${string//^/${indent_unit}}"
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
# Functions
|
||||
########################
|
||||
# Gets semantic version
|
||||
# Gets semantic version
|
||||
# Arguments:
|
||||
# $1 - version: string to extract major.minor.patch
|
||||
# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch
|
||||
@@ -38,7 +38,7 @@ get_sematic_version () {
|
||||
done
|
||||
|
||||
local number_regex='^[0-9]+$'
|
||||
if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then
|
||||
if [[ "$section" =~ $number_regex ]] && (( section > 0 )) && (( section <= 3 )); then
|
||||
echo "${version_sections[$section]}"
|
||||
return
|
||||
else
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
|
||||
set -o errexit
|
||||
set -o nounset
|
||||
set -o pipefail
|
||||
|
||||
@@ -28,7 +28,7 @@ $ docker run --name git bitnami/git: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/).
|
||||
|
||||
|
||||
* [`2`, `2-debian-10`, `2.31.1`, `2.31.1-debian-10-r10`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-git/blob/2.31.1-debian-10-r10/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.31.1`, `2.31.1-debian-10-r11`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-git/blob/2.31.1-debian-10-r11/2/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/git GitHub repo](https://github.com/bitnami/bitnami-docker-git).
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
version: '2'
|
||||
services:
|
||||
git:
|
||||
image: docker.io/bitnami/git:2-debian-10
|
||||
image: docker.io/bitnami/git:2
|
||||
|
||||
Reference in New Issue
Block a user