mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
- Requires docker, git, and package_cloud gems - Requires the PACKAGECLOUD_API_TOKEN environment variable - Builds both a deb and rpm, pushing both to packagecloud - Upgrades the golang build environment to 1.7.5 - Combines both build Dockerfiles into a single, generic env - Fixes issue where internal-functions file for tar plugin was not executable - Ensures that built plugins have a callback to clean up their source files before packaging - Adds support for “betafish” releases, which are untested versions of Dokku that are available via a separate packagecloud repository.
28 lines
759 B
Bash
Executable File
28 lines
759 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
tar_help_content_func() {
|
|
declare desc="return tar plugin help content"
|
|
cat<<help_content
|
|
tar:in <app>, Reads an tarball containing the app from stdin
|
|
tar:from <app> <url>, Loads an app tarball from url
|
|
help_content
|
|
}
|
|
|
|
tar_help_cmd() {
|
|
if [[ $1 = "tar:help" ]] ; then
|
|
echo -e 'Usage: dokku tar[:COMMAND]'
|
|
echo ''
|
|
echo 'An alternative to using git, apps are loaded via tarballs instead.'
|
|
echo ''
|
|
echo 'Additional commands:'
|
|
tar_help_content_func | sort | column -c2 -t -s,
|
|
elif [[ $(ps -o command= $PPID) == *"--all"* ]]; then
|
|
tar_help_content_func
|
|
else
|
|
cat<<help_desc
|
|
tar, Deploy applications via tarball instead of git
|
|
help_desc
|
|
fi
|
|
}
|