mirror of
https://github.com/bitnami/containers.git
synced 2026-03-14 06:48:11 +08:00
4.10.3-debian-10-r4 release
This commit is contained in:
@@ -19,7 +19,7 @@ RUN chmod g+rwX /opt/bitnami
|
|||||||
COPY rootfs /
|
COPY rootfs /
|
||||||
RUN /opt/bitnami/scripts/parse/postunpack.sh
|
RUN /opt/bitnami/scripts/parse/postunpack.sh
|
||||||
ENV BITNAMI_APP_NAME="parse" \
|
ENV BITNAMI_APP_NAME="parse" \
|
||||||
BITNAMI_IMAGE_VERSION="4.10.3-debian-10-r3" \
|
BITNAMI_IMAGE_VERSION="4.10.3-debian-10-r4" \
|
||||||
PATH="/opt/bitnami/python/bin:/opt/bitnami/node/bin:/opt/bitnami/mongodb/bin:/opt/bitnami/mongodb-client/bin:/opt/bitnami/parse/bin:/opt/bitnami/common/bin:$PATH"
|
PATH="/opt/bitnami/python/bin:/opt/bitnami/node/bin:/opt/bitnami/mongodb/bin:/opt/bitnami/mongodb-client/bin:/opt/bitnami/parse/bin:/opt/bitnami/common/bin:$PATH"
|
||||||
|
|
||||||
EXPOSE 1337 3000
|
EXPOSE 1337 3000
|
||||||
|
|||||||
@@ -137,6 +137,19 @@ generate_cron_conf() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
########################
|
||||||
|
# Remove a cron configuration file for a given service
|
||||||
|
# Arguments:
|
||||||
|
# $1 - Service name
|
||||||
|
# Returns:
|
||||||
|
# None
|
||||||
|
#########################
|
||||||
|
remove_cron_conf() {
|
||||||
|
local service_name="${1:?service name is missing}"
|
||||||
|
local cron_conf_dir="/etc/monit/conf.d"
|
||||||
|
rm -f "${cron_conf_dir}/${service_name}"
|
||||||
|
}
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# Generate a monit configuration file for a given service
|
# Generate a monit configuration file for a given service
|
||||||
# Arguments:
|
# Arguments:
|
||||||
@@ -183,6 +196,19 @@ check process ${service_name}
|
|||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
########################
|
||||||
|
# Remove a monit configuration file for a given service
|
||||||
|
# Arguments:
|
||||||
|
# $1 - Service name
|
||||||
|
# Returns:
|
||||||
|
# None
|
||||||
|
#########################
|
||||||
|
remove_monit_conf() {
|
||||||
|
local service_name="${1:?service name is missing}"
|
||||||
|
local monit_conf_dir="/etc/monit/conf.d"
|
||||||
|
rm -f "${monit_conf_dir}/${service_name}.conf"
|
||||||
|
}
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# Generate a logrotate configuration file
|
# Generate a logrotate configuration file
|
||||||
# Arguments:
|
# Arguments:
|
||||||
@@ -233,3 +259,16 @@ $(indent "$extra" 2)
|
|||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
########################
|
||||||
|
# Remove a logrotate configuration file
|
||||||
|
# Arguments:
|
||||||
|
# $1 - Service name
|
||||||
|
# Returns:
|
||||||
|
# None
|
||||||
|
#########################
|
||||||
|
remove_logrotate_conf() {
|
||||||
|
local service_name="${1:?service name is missing}"
|
||||||
|
local logrotate_conf_dir="/etc/logrotate.d"
|
||||||
|
rm -f "${logrotate_conf_dir}/${service_name}"
|
||||||
|
}
|
||||||
|
|||||||
@@ -48,7 +48,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/).
|
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.10.3`, `4.10.3-debian-10-r3`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse/blob/4.10.3-debian-10-r3/4/debian-10/Dockerfile)
|
* [`4`, `4-debian-10`, `4.10.3`, `4.10.3-debian-10-r4`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse/blob/4.10.3-debian-10-r4/4/debian-10/Dockerfile)
|
||||||
|
|
||||||
Subscribe to project updates by watching the [bitnami/parse GitHub repo](https://github.com/bitnami/bitnami-docker-parse).
|
Subscribe to project updates by watching the [bitnami/parse GitHub repo](https://github.com/bitnami/bitnami-docker-parse).
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user