Added runtipictl update and fixed typo
This commit is contained in:
parent
19bf22a19f
commit
6031300cc6
|
@ -72,6 +72,9 @@ case "${1}" in
|
||||||
start)
|
start)
|
||||||
runtipi-cli start --env-file user-config/.env.local --no-permissions
|
runtipi-cli start --env-file user-config/.env.local --no-permissions
|
||||||
;;
|
;;
|
||||||
|
update)
|
||||||
|
runtipi-cli update --env-file user-config/.env.local --no-permissions "${2:?Must supply version}" "${@:3}"
|
||||||
|
;;
|
||||||
full-start)
|
full-start)
|
||||||
if ! jlmkr exec runtipi true; then
|
if ! jlmkr exec runtipi true; then
|
||||||
jlmkr start runtipi
|
jlmkr start runtipi
|
||||||
|
@ -106,15 +109,21 @@ case "${1}" in
|
||||||
"" "" "" \
|
"" "" "" \
|
||||||
"Available commands:" "" ""\
|
"Available commands:" "" ""\
|
||||||
"" "" "" \
|
"" "" "" \
|
||||||
|
"runtipi" "" ""\
|
||||||
"" "cli" "runtipi-cli" \
|
"" "cli" "runtipi-cli" \
|
||||||
"" "dcoapp" "docker compose for runtipi apps" \
|
|
||||||
"" "dls" "stylized docker ls" \
|
|
||||||
"" "docker" "docker" \
|
|
||||||
"" "dockge" "dokcer compose for dockge stacks" \
|
|
||||||
"" "exec" "execute within the shell, START_DIR env applies" \
|
|
||||||
"" "full-start" "start runtipi jail, following with starting runtipi" \
|
"" "full-start" "start runtipi jail, following with starting runtipi" \
|
||||||
"" "log" "runtipi docker stack logs" \
|
"" "log" "runtipi docker stack logs" \
|
||||||
"" "start" "start runtipi" \
|
"" "start" "start runtipi" \
|
||||||
|
"" "update" "update runtipi to a specific version" \
|
||||||
|
"" "" "" \
|
||||||
|
"docker/docker-compose" "" ""\
|
||||||
|
"" "dcoapp" "docker compose for runtipi apps" \
|
||||||
|
"" "dls" "stylized docker ls" \
|
||||||
|
"" "docker" "docker" \
|
||||||
|
"" "dockge" "docker compose for dockge stacks" \
|
||||||
|
"" "" "" \
|
||||||
|
"misc." "" ""\
|
||||||
|
"" "exec" "execute within the shell, START_DIR env applies" \
|
||||||
"" "" "" \
|
"" "" "" \
|
||||||
"" "setup" "setup runtipictl in user's .local/bin dir"
|
"" "setup" "setup runtipictl in user's .local/bin dir"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue