2022-03-29 20:40:04 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
2022-03-30 19:26:01 +00:00
|
|
|
# use greadlink instead of readlink on osx
|
|
|
|
if [[ "$(uname)" == "Darwin" ]]; then
|
|
|
|
rdlk=greadlink
|
|
|
|
else
|
|
|
|
rdlk=readlink
|
|
|
|
fi
|
|
|
|
|
|
|
|
ROOT_FOLDER="$($rdlk -f $(dirname "${BASH_SOURCE[0]}")/..)"
|
2022-03-29 20:40:04 +00:00
|
|
|
STATE_FOLDER="${ROOT_FOLDER}/state"
|
|
|
|
|
|
|
|
show_help() {
|
|
|
|
cat << EOF
|
|
|
|
app 0.0.1
|
|
|
|
|
|
|
|
CLI for managing Tipi apps
|
|
|
|
|
|
|
|
Usage: app <command> <app> [<arguments>]
|
|
|
|
|
|
|
|
Commands:
|
|
|
|
install Pulls down images for an app and starts it
|
|
|
|
uninstall Removes images and destroys all data for an app
|
|
|
|
stop Stops an installed app
|
|
|
|
start Starts an installed app
|
|
|
|
compose Passes all arguments to docker-compose
|
|
|
|
ls-installed Lists installed apps
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
# Get field from json file
|
|
|
|
function get_json_field() {
|
|
|
|
local json_file="$1"
|
|
|
|
local field="$2"
|
|
|
|
|
|
|
|
echo $(jq -r ".${field}" "${json_file}")
|
|
|
|
}
|
|
|
|
|
|
|
|
list_installed_apps() {
|
|
|
|
str=$(get_json_field ${STATE_FOLDER}/apps.json installed)
|
|
|
|
echo $str
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ -z ${1+x} ]; then
|
|
|
|
command=""
|
|
|
|
else
|
|
|
|
command="$1"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Lists installed apps
|
|
|
|
if [[ "$command" = "ls-installed" ]]; then
|
|
|
|
list_installed_apps
|
|
|
|
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z ${2+x} ]; then
|
|
|
|
show_help
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
app="$2"
|
|
|
|
app_dir="${ROOT_FOLDER}/apps/${app}"
|
|
|
|
app_data_dir="${ROOT_FOLDER}/app-data/${app}"
|
|
|
|
|
|
|
|
if [[ -z "${app}" ]] || [[ ! -d "${app_dir}" ]]; then
|
|
|
|
echo "Error: \"${app}\" is not a valid app"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z ${3+x} ]; then
|
|
|
|
args=""
|
|
|
|
else
|
|
|
|
args="${@:3}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
compose() {
|
|
|
|
local app="${1}"
|
|
|
|
shift
|
|
|
|
|
|
|
|
# App data folder
|
|
|
|
local env_file="${ROOT_FOLDER}/.env"
|
|
|
|
local app_compose_file="${app_dir}/docker-compose.yml"
|
2022-04-07 08:34:18 +00:00
|
|
|
local common_compose_file="${ROOT_FOLDER}/apps/docker-compose.common.yml"
|
|
|
|
local app_dir="${ROOT_FOLDER}/apps/${app}"
|
2022-03-29 20:40:04 +00:00
|
|
|
|
|
|
|
# Vars to use in compose file
|
|
|
|
export APP_DATA_DIR="${app_data_dir}"
|
2022-04-07 08:34:18 +00:00
|
|
|
export APP_DIR="${app_dir}"
|
2022-04-21 18:54:45 +00:00
|
|
|
|
2022-04-12 20:07:39 +00:00
|
|
|
export ROOT_FOLDER="${ROOT_FOLDER}"
|
|
|
|
|
|
|
|
# Docker-compose does not support multiple env files
|
|
|
|
# --env-file "${env_file}" \
|
2022-03-29 20:40:04 +00:00
|
|
|
|
|
|
|
docker-compose \
|
2022-04-12 20:07:39 +00:00
|
|
|
--env-file "${ROOT_FOLDER}/app-data/${app}/app.env" \
|
2022-03-29 20:40:04 +00:00
|
|
|
--project-name "${app}" \
|
|
|
|
--file "${app_compose_file}" \
|
2022-04-07 08:34:18 +00:00
|
|
|
--file "${common_compose_file}" \
|
2022-03-29 20:40:04 +00:00
|
|
|
"${@}"
|
|
|
|
}
|
|
|
|
|
2022-04-07 08:34:18 +00:00
|
|
|
# Install new app
|
|
|
|
if [[ "$command" = "install" ]]; then
|
|
|
|
compose "${app}" pull
|
|
|
|
|
2022-04-13 21:47:07 +00:00
|
|
|
# Copy default data dir to app data dir if it exists
|
|
|
|
if [[ -d "${ROOT_FOLDER}/apps/${app}/data" ]]; then
|
|
|
|
cp -r "${ROOT_FOLDER}/apps/${app}/data" "${app_data_dir}/data"
|
|
|
|
fi
|
2022-04-13 18:34:24 +00:00
|
|
|
|
2022-04-07 08:34:18 +00:00
|
|
|
compose "${app}" up -d
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2022-03-29 20:40:04 +00:00
|
|
|
# Removes images and destroys all data for an app
|
|
|
|
if [[ "$command" = "uninstall" ]]; then
|
|
|
|
echo "Removing images for app ${app}..."
|
2022-04-14 17:12:46 +00:00
|
|
|
compose "${app}" down --remove-orphans
|
2022-03-29 20:40:04 +00:00
|
|
|
|
|
|
|
echo "Deleting app data for app ${app}..."
|
|
|
|
if [[ -d "${app_data_dir}" ]]; then
|
2022-05-03 20:55:55 +00:00
|
|
|
sudo rm -rf "${app_data_dir}"
|
2022-03-29 20:40:04 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Successfully uninstalled app ${app}"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Stops an installed app
|
|
|
|
if [[ "$command" = "stop" ]]; then
|
|
|
|
|
|
|
|
echo "Stopping app ${app}..."
|
|
|
|
compose "${app}" rm --force --stop
|
|
|
|
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Starts an installed app
|
|
|
|
if [[ "$command" = "start" ]]; then
|
|
|
|
echo "Starting app ${app}..."
|
|
|
|
compose "${app}" up --detach
|
|
|
|
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Passes all arguments to docker-compose
|
|
|
|
if [[ "$command" = "compose" ]]; then
|
|
|
|
compose "${app}" ${args}
|
|
|
|
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If we get here it means no valid command was supplied
|
|
|
|
# Show help and exit
|
|
|
|
show_help
|
|
|
|
exit 1
|