mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-26 15:09:53 +03:00

BREAKING CHANGE: Now only one tag will be published: `latest`. This tag will include both the standard and latest version
41 lines
1.3 KiB
Bash
Executable file
41 lines
1.3 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
sed -i "s,\${REGISTRY_URL},${REGISTRY_URL}," index.html
|
|
sed -i "s,\${REGISTRY_TITLE},${REGISTRY_TITLE}," index.html
|
|
sed -i "s,\${PULL_URL},${PULL_URL}," index.html
|
|
sed -i "s,\${SINGLE_REGISTRY},${SINGLE_REGISTRY}," index.html
|
|
|
|
if [ -z "${DELETE_IMAGES}" ] || [ "${DELETE_IMAGES}" = false ] ; then
|
|
sed -i -r "s/\${DELETE_IMAGES}/false/" index.html
|
|
fi
|
|
|
|
if [ "${SHOW_CONTENT_DIGEST}" = false ] ; then
|
|
sed -i -r "s/\${SHOW_CONTENT_DIGEST}/false/" index.html
|
|
fi
|
|
|
|
if [ -n "${CATALOG_ELEMENTS_LIMIT}" ] ; then
|
|
sed -i -r "s/\${CATALOG_ELEMENTS_LIMIT}/${CATALOG_ELEMENTS_LIMIT}/" index.html
|
|
fi
|
|
|
|
get_nginx_proxy_headers() {
|
|
(
|
|
env &&
|
|
if [ -f "/etc/nginx/.env" ]; then
|
|
cat /etc/nginx/.env
|
|
# Force new line
|
|
echo ""
|
|
fi
|
|
) | while read e; do
|
|
if [ -n "$(echo $e | grep -o '^NGINX_PROXY_HEADER_')" ]; then
|
|
key=$(echo ${e%%=*} | sed 's/^NGINX_PROXY_HEADER_//' | sed 's/_/-/g')
|
|
value=${e#*=}
|
|
echo -n "proxy_set_header ${key} \"${value}\"; "
|
|
fi
|
|
done
|
|
}
|
|
|
|
if [ -n "${NGINX_PROXY_PASS_URL}" ] ; then
|
|
sed -i "s,\${NGINX_PROXY_PASS_URL},${NGINX_PROXY_PASS_URL}," /etc/nginx/conf.d/default.conf
|
|
sed -i "s^\${NGINX_PROXY_HEADERS}^$(get_nginx_proxy_headers)^" /etc/nginx/conf.d/default.conf
|
|
sed -i "s,#!,," /etc/nginx/conf.d/default.conf
|
|
fi
|