3.6.3-debian-10-r263 release
This commit is contained in:
parent
7570219d5d
commit
06e85aace2
|
|
@ -11,9 +11,9 @@ COPY prebuildfs /
|
|||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl gzip libc6 netcat procps tar zlib1g
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wait-for-port" "1.0.1-9" --checksum 4b509978f6d0a4c3b958deeb3490241cda60e4412c138da665192631d60f70de
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "11.0.14-6" --checksum 8e9d15dc54b3cf57e7f3b92efbb1e01ed07f002889034ec7703b62efb8265243
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-6" --checksum 6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "zookeeper" "3.6.3-11" --checksum 9c47e4f423a3985bf7c99ba5a4221e95d352c989a05e37b9474438b10842f951
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "11.0.14-7" --checksum 900545c4f346a0ece8abf2caf64fd9d4ab7514967d4614d716bf7362b24f828b
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-7" --checksum d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "zookeeper" "3.6.3-12" --checksum 98dfb7768b5598f36fee09a8e299b0b4ab6adcd00af6a42a771550071a2e449b
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN chmod g+rwX /opt/bitnami
|
||||
|
|
@ -23,7 +23,7 @@ RUN ln -s /opt/bitnami/scripts/zookeeper/run.sh /run.sh
|
|||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/zookeeper/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="zookeeper" \
|
||||
BITNAMI_IMAGE_VERSION="3.6.3-debian-10-r262"
|
||||
BITNAMI_IMAGE_VERSION="3.6.3-debian-10-r263"
|
||||
|
||||
EXPOSE 2181 2888 3888 8080
|
||||
|
||||
|
|
|
|||
|
|
@ -1,17 +1,17 @@
|
|||
{
|
||||
"gosu": {
|
||||
"arch": "amd64",
|
||||
"digest": "6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664",
|
||||
"digest": "d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "1.14.0-6"
|
||||
"version": "1.14.0-7"
|
||||
},
|
||||
"java": {
|
||||
"arch": "amd64",
|
||||
"digest": "8e9d15dc54b3cf57e7f3b92efbb1e01ed07f002889034ec7703b62efb8265243",
|
||||
"digest": "900545c4f346a0ece8abf2caf64fd9d4ab7514967d4614d716bf7362b24f828b",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "11.0.14-6"
|
||||
"version": "11.0.14-7"
|
||||
},
|
||||
"wait-for-port": {
|
||||
"arch": "amd64",
|
||||
|
|
@ -22,9 +22,9 @@
|
|||
},
|
||||
"zookeeper": {
|
||||
"arch": "amd64",
|
||||
"digest": "9c47e4f423a3985bf7c99ba5a4221e95d352c989a05e37b9474438b10842f951",
|
||||
"digest": "98dfb7768b5598f36fee09a8e299b0b4ab6adcd00af6a42a771550071a2e449b",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "3.6.3-11"
|
||||
"version": "3.6.3-12"
|
||||
}
|
||||
}
|
||||
|
|
@ -74,9 +74,8 @@ is_dir_empty() {
|
|||
# boolean
|
||||
#########################
|
||||
is_mounted_dir_empty() {
|
||||
local -r path="${1:?missing directory}"
|
||||
# Calculate real path in order to avoid issues with symlinks
|
||||
local -r dir="$(realpath "$path")"
|
||||
local dir="${1:?missing directory}"
|
||||
|
||||
if is_dir_empty "$dir" || find "$dir" -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" -exec false {} +; then
|
||||
true
|
||||
else
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
|
||||
|
||||
* [`3.7`, `3.7-debian-10`, `3.7.0`, `3.7.0-debian-10-r306`, `latest` (3.7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-zookeeper/blob/3.7.0-debian-10-r306/3.7/debian-10/Dockerfile)
|
||||
* [`3.6`, `3.6-debian-10`, `3.6.3`, `3.6.3-debian-10-r262` (3.6/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-zookeeper/blob/3.6.3-debian-10-r262/3.6/debian-10/Dockerfile)
|
||||
* [`3.6`, `3.6-debian-10`, `3.6.3`, `3.6.3-debian-10-r263` (3.6/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-zookeeper/blob/3.6.3-debian-10-r263/3.6/debian-10/Dockerfile)
|
||||
* [`3.5`, `3.5-debian-10`, `3.5.9`, `3.5.9-debian-10-r143` (3.5/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-zookeeper/blob/3.5.9-debian-10-r143/3.5/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/zookeeper GitHub repo](https://github.com/bitnami/bitnami-docker-zookeeper).
|
||||
|
|
|
|||
Loading…
Reference in New Issue