Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f8abf96b3 | ||
|
|
256e905831 | ||
|
|
971446129a | ||
|
|
734c6190b0 | ||
|
|
9778d2f7de | ||
|
|
c1b7936f29 | ||
|
|
622519eb9d | ||
|
|
c594534013 | ||
|
|
9725b9547d | ||
|
|
07d157e236 |
@@ -1 +1 @@
|
|||||||
FROM mysql:8.0.29
|
FROM mysql:8.0.31
|
||||||
|
|||||||
8
config
8
config
@@ -27,9 +27,9 @@ if [[ -n $DOKKU_API_VERSION ]]; then
|
|||||||
export PLUGIN_BASE_PATH="$PLUGIN_ENABLED_PATH"
|
export PLUGIN_BASE_PATH="$PLUGIN_ENABLED_PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export PLUGIN_BUSYBOX_IMAGE="busybox:1.31.1-uclibc"
|
export PLUGIN_BUSYBOX_IMAGE="busybox:1.34.1-uclibc"
|
||||||
export PLUGIN_AMBASSADOR_IMAGE="dokku/ambassador:0.3.3"
|
export PLUGIN_AMBASSADOR_IMAGE="dokku/ambassador:0.5.0"
|
||||||
export PLUGIN_S3BACKUP_IMAGE="dokku/s3backup:0.10.3"
|
export PLUGIN_S3BACKUP_IMAGE="dokku/s3backup:0.14.0"
|
||||||
export PLUGIN_WAIT_IMAGE="dokku/wait:0.4.3"
|
export PLUGIN_WAIT_IMAGE="dokku/wait:0.6.0"
|
||||||
|
|
||||||
export MYSQL_CONFIG_OPTIONS=${MYSQL_CONFIG_OPTIONS:=""}
|
export MYSQL_CONFIG_OPTIONS=${MYSQL_CONFIG_OPTIONS:=""}
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ service_export() {
|
|||||||
|
|
||||||
[[ -n $SSH_TTY ]] && stty -opost
|
[[ -n $SSH_TTY ]] && stty -opost
|
||||||
docker exec "$SERVICE_NAME" bash -c "printf '[client]\ndefault-character-set=utf8mb4\npassword=$PASSWORD\n' > /root/credentials.cnf"
|
docker exec "$SERVICE_NAME" bash -c "printf '[client]\ndefault-character-set=utf8mb4\npassword=$PASSWORD\n' > /root/credentials.cnf"
|
||||||
docker exec "$SERVICE_NAME" mysqldump --defaults-extra-file=/root/credentials.cnf --user=mysql --single-transaction --quick "$DATABASE_NAME"
|
docker exec "$SERVICE_NAME" mysqldump --defaults-extra-file=/root/credentials.cnf --user=mysql --single-transaction --no-tablespaces --quick "$DATABASE_NAME"
|
||||||
docker exec "$SERVICE_NAME" rm /root/credentials.cnf
|
docker exec "$SERVICE_NAME" rm /root/credentials.cnf
|
||||||
status=$?
|
status=$?
|
||||||
[[ -n $SSH_TTY ]] && stty opost
|
[[ -n $SSH_TTY ]] && stty opost
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
[plugin]
|
[plugin]
|
||||||
description = "dokku mysql service plugin"
|
description = "dokku mysql service plugin"
|
||||||
version = "1.22.0"
|
version = "1.25.0"
|
||||||
[plugin.config]
|
[plugin.config]
|
||||||
|
|||||||
20
service-list
Executable file
20
service-list
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/config"
|
||||||
|
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/common-functions"
|
||||||
|
set -eo pipefail
|
||||||
|
[[ $DOKKU_TRACE ]] && set -x
|
||||||
|
|
||||||
|
plugin-service-list() {
|
||||||
|
declare desc="allows listing all services for use by other dokku plugins"
|
||||||
|
declare SERVICE_TYPE="$1"
|
||||||
|
|
||||||
|
if [[ -n "$SERVICE_TYPE" ]] && [[ "$SERVICE_TYPE" != "$PLUGIN_COMMAND_PREFIX" ]]; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
for service in $(fn-services-list false); do
|
||||||
|
echo "$PLUGIN_COMMAND_PREFIX:$service"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
plugin-service-list "$@"
|
||||||
Reference in New Issue
Block a user