From 7d61c4f1782d08fd9dfa1d419d152b6814decfb1 Mon Sep 17 00:00:00 2001 From: Elton Renda Date: Mon, 4 Dec 2023 10:37:15 +0200 Subject: [PATCH] chore: update README.md and set --app to none by default --- README.md | 4 ++-- create.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8028f6b..c39ff4b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ bash -c "$(wget --no-cache -qO- https://raw.githubusercontent.com/ej52/proxmox/m ### Command line arguments | argument | default | description | |--------------------|----------------------|--------------------------------------------------------| -| --app | nginx-proxy-manager | application to install | +| --app | none | application to install | | --id | $nextid | container id | | --os | alpine | OS distribution to install | | --os-version | latest | OS version to install | @@ -52,7 +52,7 @@ sh -c "$(wget --no-cache -qO- https://raw.githubusercontent.com/ej52/proxmox/mai ### Command line arguments | argument | default | description | |--------------------|----------------------|--------------------------------------------------------| -| --app | nginx-proxy-manager | application to install | +| --app | none | application to install | | --cleanup | false | Remove dev dependencies after install | ## Applications diff --git a/create.sh b/create.sh index dd2534c..c8d26ff 100644 --- a/create.sh +++ b/create.sh @@ -53,7 +53,7 @@ while [ "$#" -gt 0 ]; do shift done -EPS_APP_NAME=${EPS_APP_NAME:-nginx-proxy-manager} +EPS_APP_NAME=${EPS_APP_NAME:-} if [ -z "$EPS_APP_NAME" ]; then log "error" "No application provided" "" 1 fi