mirror of
https://github.com/bitnami/containers.git
synced 2026-04-02 07:18:06 +08:00
3.6.11-r3 release
Add new installation inputs disk_free_limit and cluster_partition_handling
This commit is contained in:
@@ -4,14 +4,16 @@ LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages libc6 libssl1.0.0 libtinfo5 zlib1g
|
||||
RUN bitnami-pkg install erlang-19.3.0-0 --checksum 7cb86885f3f0992f8f55f61680e548056ed105a5f1c63e239dc9d283a00d5a14
|
||||
RUN bitnami-pkg unpack rabbitmq-3.6.11-1 --checksum ad1e3efb06445e69a3b2bab7eef7fac2733507be4ff9eb6094a98028ea676ef3
|
||||
RUN bitnami-pkg unpack rabbitmq-3.6.11-2 --checksum 65add6dc930988c902b0040a347b441b4b2aa6e07c47ac033743f51d7c744bee
|
||||
|
||||
COPY rootfs /
|
||||
|
||||
ENV BITNAMI_APP_NAME="rabbitmq" \
|
||||
BITNAMI_IMAGE_VERSION="3.6.11-r2" \
|
||||
BITNAMI_IMAGE_VERSION="3.6.11-r3" \
|
||||
PATH="/opt/bitnami/erlang/bin:/opt/bitnami/rabbitmq/bin:/opt/bitnami/rabbitmq/sbin:$PATH" \
|
||||
RABBITMQ_CLUSTER_NODE_NAME="" \
|
||||
RABBITMQ_CLUSTER_PARTITION_HANDLING="autoheal" \
|
||||
RABBITMQ_DISK_FREE_LIMIT="{mem_relative, 1.0}" \
|
||||
RABBITMQ_ERLANG_COOKIE="" \
|
||||
RABBITMQ_MANAGER_PORT_NUMBER="15672" \
|
||||
RABBITMQ_NODE_NAME="rabbit@localhost" \
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"clusterNodeName": "{{$global.env.RABBITMQ_CLUSTER_NODE_NAME}}",
|
||||
"clusterPartitionHandling": "{{$global.env.RABBITMQ_CLUSTER_PARTITION_HANDLING}}",
|
||||
"diskFreeLimit": "{{$global.env.RABBITMQ_DISK_FREE_LIMIT}}",
|
||||
"erlangCookie": "{{$global.env.RABBITMQ_ERLANG_COOKIE}}",
|
||||
"managerPort": "{{$global.env.RABBITMQ_MANAGER_PORT_NUMBER}}",
|
||||
"nodeName": "{{$global.env.RABBITMQ_NODE_NAME}}",
|
||||
|
||||
@@ -181,7 +181,9 @@ Available variables:
|
||||
- `RABBITMQ_NODE_NAME`: Node name and host. E.g.: *node@hostname* or *node* (localhost won't work in cluster topology). Default **rabbit@localhost**
|
||||
- `RABBITMQ_NODE_PORT_NUMBER`: Node port. Default: **5672**
|
||||
- `RABBITMQ_CLUSTER_NODE_NAME`: Node name to cluster with. E.g.: **clusternode@hostname**
|
||||
- `RABBITMQ_CLUSTER_PARTITION_HANDLING`: Cluster partition recovery mechanism. Default: **autoheal**
|
||||
- `RABBITMQ_MANAGER_PORT_NUMBER`: Manager port. Default: **15672**
|
||||
- `RABBITMQ_DISK_FREE_LIMIT`: Disk free space limit of the partition on which RabbitMQ is storing data. Default: **{mem_relative, 1.0}**
|
||||
|
||||
## Setting up a cluster
|
||||
|
||||
|
||||
Reference in New Issue
Block a user