Add prune command

This commit is contained in:
decentral1se 2021-06-01 09:34:45 +02:00
parent cc8a4a1c57
commit f9b826d2f8
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A
1 changed files with 22 additions and 0 deletions

22
abra.sh
View File

@ -1,2 +1,24 @@
export NGINX_CONFIG_VERSION=v1
export APP_ENTRYPOINT_VERSION=v1
sub_npm() {
export NODE_CONFIG_DIR=/app/config
export NODE_ENV=production
export PEERTUBE_DB_PASSWORD=$(cat /run/secrets/db_password)
# shellcheck disable=SC2034
abra__service_="app"
sub_app_run npm run "$@"
}
sub_prune() {
info "Pruning storage"
info "See https://docs.joinpeertube.org/maintain-tools?id=prune-storagejs for more"
silence
sub_npm "prune-storage"
unsilence
success "Storage pruned!"
}