1.4.0-debian-10-r49 release

This commit is contained in:
Bitnami Bot 2020-03-16 20:46:07 +00:00
parent 6248ca9f89
commit 1c21b1d6af
9 changed files with 156 additions and 15 deletions

View File

@ -20,10 +20,10 @@ RUN useradd -r -u 1001 -g root pytorch
COPY rootfs /
RUN /prepare.sh
ENV BITNAMI_APP_NAME="pytorch" \
BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r48" \
BITNAMI_IMAGE_VERSION="1.4.0-debian-10-r49" \
LD_LIBRARY_PATH="/opt/bitnami/miniconda/lib/python3.7/site-packages/torch/lib/:/opt/bitnami/miniconda/lib/python3.7/site-packages/PIL/.libs/:$LD_LIBRARY_PATH" \
NAMI_PREFIX="/.nami" \
PATH="/opt/bitnami/miniconda/bin:/opt/bitnami/gosu/bin:$PATH"
PATH="/opt/bitnami/miniconda/bin:/opt/bitnami/common/bin:$PATH"
WORKDIR /app
USER 1001

View File

@ -1,9 +1,10 @@
#!/bin/bash
# shellcheck disable=SC1090
#
# Bitnami custom library
# Load Generic Libraries
. /liblog.sh
. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh
# Constants
BOLD='\033[1m'

View File

@ -1,9 +1,10 @@
#!/bin/bash
# shellcheck disable=SC1090
#
# Library for file system actions
# Load Generic Libraries
. /liblog.sh
. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh
# Functions

View File

@ -20,7 +20,13 @@ CYAN='\033[38;5;6m'
# None
#########################
stderr_print() {
printf "%b\\n" "${*}" >&2
# 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it
local -r bool="${BITNAMI_QUIET:-false}"
# comparison is performed without regard to the case of alphabetic characters
shopt -s nocasematch
if ! [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then
printf "%b\\n" "${*}" >&2
fi
}
########################

View File

@ -1,7 +1,11 @@
#!/bin/bash
# shellcheck disable=SC1090
#
# Library for operating system actions
# Load Generic Libraries
. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh
# Functions
########################
@ -56,11 +60,12 @@ ensure_user_exists() {
local group="${2:-}"
if ! user_exists "$user"; then
useradd "$user" >/dev/null 2>&1
if [[ -n "$group" ]]; then
ensure_group_exists "$group"
usermod -a -G "$group" "$user" >/dev/null 2>&1
fi
useradd "$user" >/dev/null 2>&1
fi
if [[ -n "$group" ]]; then
ensure_group_exists "$group"
usermod -a -G "$group" "$user" >/dev/null 2>&1
fi
}
@ -91,6 +96,74 @@ get_total_memory() {
echo $(($(grep MemTotal /proc/meminfo | awk '{print $2}') / 1024))
}
########################
# Get machine size depending on specified memory
# Globals:
# None
# Arguments:
# $1 - memory size (optional)
# Returns:
# Detected instance size
#########################
get_machine_size() {
local memory="${1:-}"
if [[ -z "$memory" ]]; then
debug "Memory was not specified, detecting available memory automatically"
memory="$(get_total_memory)"
fi
sanitized_memory=$(convert_to_mb "$memory")
if [[ "$sanitized_memory" -gt 26000 ]]; then
echo 2xlarge
elif [[ "$sanitized_memory" -gt 13000 ]]; then
echo xlarge
elif [[ "$sanitized_memory" -gt 6000 ]]; then
echo large
elif [[ "$sanitized_memory" -gt 3000 ]]; then
echo medium
elif [[ "$sanitized_memory" -gt 1500 ]]; then
echo small
else
echo micro
fi
}
########################
# Get machine size depending on specified memory
# Globals:
# None
# Arguments:
# $1 - memory size (optional)
# Returns:
# Detected instance size
#########################
get_supported_machine_sizes() {
echo micro small medium large xlarge 2xlarge
}
########################
# Convert memory size from string to amount of megabytes (i.e. 2G -> 2048)
# Globals:
# None
# Arguments:
# $1 - memory size
# Returns:
# Result of the conversion
#########################
convert_to_mb() {
local amount="${1:-}"
if [[ $amount =~ ^([0-9]+)(M|G) ]]; then
size="${BASH_REMATCH[1]}"
unit="${BASH_REMATCH[2]}"
if [[ "$unit" = "G" ]]; then
amount="$((size * 1024))"
else
amount="$size"
fi
fi
echo "$amount"
}
#########################
# Redirects output to /dev/null if debug mode is disabled
# Globals:

View File

@ -17,7 +17,7 @@ get_pid_from_file() {
if [[ -f "$pid_file" ]]; then
if [[ -n "$(< "$pid_file")" ]] && [[ "$(< "$pid_file")" -gt 0 ]]; then
echo "$(< "$pid_file")"
fi
fi
fi
}
@ -55,3 +55,61 @@ stop_service_using_pid() {
counter=$((counter - 1))
done
}
########################
# Generate a monit configuration file for a given service
# Arguments:
# $1 - Service name
# $2 - Pid file
# $3 - Start command
# $4 - Stop command
# Returns:
# None
#########################
generate_monit_conf() {
local -r service_name="${1:?service name is missing}"
local -r pid_file="${2:?pid file is missing}"
local -r start_command="${3:?start command is missing}"
local -r stop_command="${4:?stop command is missing}"
local -r monit_conf_dir="/etc/monit/conf.d"
mkdir -p "$monit_conf_dir"
cat >"${monit_conf_dir}/${service_name}.conf" <<EOF
check process ${service_name}
with pidfile "${pid_file}"
start program = "${start_command}" with timeout 90 seconds
stop program = "${stop_command}" with timeout 90 seconds
EOF
}
########################
# Generate a logrotate configuration file
# Arguments:
# $1 - Log path
# $2 - Period
# $3 - Number of rotations to store
# $4 - Extra options (Optional)
# Returns:
# None
#########################
generate_logrotate_conf() {
local -r service_name="${1:?service name is missing}"
local -r log_path="${2:?log path is missing}"
local -r period="${3:-weekly}"
local -r rotations="${4:-150}"
local -r extra_options="${5:-}"
local -r logrotate_conf_dir="/etc/logrotate.d"
mkdir -p "$logrotate_conf_dir"
cat >"${logrotate_conf_dir}/${service_name}" <<EOF
${log_path} {
${period}
rotate ${rotations}
dateext
compress
copytruncate
missingok
${extra_options}
}
EOF
}

View File

@ -1,9 +1,10 @@
#!/bin/bash
# shellcheck disable=SC1090
#
# Validation functions library
# Load Generic Libraries
. /liblog.sh
. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh
# Functions

View File

@ -1,9 +1,10 @@
#!/bin/bash
# shellcheck disable=SC1090
#
# Library for managing versions strings
# Load Generic Libraries
. ./liblog.sh
. "${BITNAMI_SCRIPTS_DIR:-}"/liblog.sh
# Functions
########################

View File

@ -43,7 +43,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/containers/how-to/understand-rolling-tags-containers/).
* [`1-debian-10`, `1.4.0-debian-10-r48`, `1`, `1.4.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-pytorch/blob/1.4.0-debian-10-r48/1/debian-10/Dockerfile)
* [`1-debian-10`, `1.4.0-debian-10-r49`, `1`, `1.4.0`, `latest` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-pytorch/blob/1.4.0-debian-10-r49/1/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/pytorch GitHub repo](https://github.com/bitnami/bitnami-docker-pytorch).
@ -146,7 +146,7 @@ We'd love for you to contribute to this container. You can request new features
# Issues
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-pytorch/issues). For us to provide better support, be sure to include the following information in your issue:
If you encountered a problem running this container, you can file an [issue](https://github.com/bitnami/bitnami-docker-pytorch/issues/new). For us to provide better support, be sure to include the following information in your issue:
- Host OS and version
- Docker version (`$ docker version`)