Release v1.0.2: fix bug introduced by #67

Closes #69
This commit is contained in:
Joxit 2019-01-25 08:18:23 +01:00
parent 8055baa951
commit 476a441715
No known key found for this signature in database
GPG Key ID: F526592B8E012263
4 changed files with 6 additions and 6 deletions

View File

@ -3,16 +3,16 @@ $@
sed -i "s,\${URL},${URL}," scripts/docker-registry-ui.js
sed -i "s,\${REGISTRY_TITLE},${REGISTRY_TITLE}," scripts/docker-registry-ui.js
if [[ -z "${DELETE_IMAGES}" ]] || [[ "${DELETE_IMAGES}" = false ]] ; then
if [ -z "${DELETE_IMAGES}" ] || [ "${DELETE_IMAGES}" = false ] ; then
sed -i -r "s/(isImageRemoveActivated[:=])[^,;]*/\1false/" scripts/docker-registry-ui.js
fi
if [[ -n "${REGISTRY_URL}" ]] ; then
if [ -n "${REGISTRY_URL}" ] ; then
sed -i "s,\${REGISTRY_URL},${REGISTRY_URL}," /etc/nginx/conf.d/default.conf
sed -i "s,#!,," /etc/nginx/conf.d/default.conf
fi
if [[ -z "$@" ]]; then
if [ -z "$@" ]; then
nginx -g "daemon off;"
else
$@

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "docker-registry-ui",
"version": "1.0.1",
"version": "1.0.2",
"scripts": {
"build": "./node_modules/gulp/bin/gulp.js build"
},