11 lines
415 B
Bash
Executable File
11 lines
415 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
|
|
# MySQL only runs docker-entrypoint-initdb.d scripts for a new data volume.
|
|
# Run this once after upgrading an existing deployment so the dedicated
|
|
# account-provisioning user receives its narrowly scoped privileges.
|
|
docker compose exec -T mysql \
|
|
sh /docker-entrypoint-initdb.d/01-data-center-grants.sh
|
|
|
|
echo "DBeaver 管理接入的独立 MySQL 签发账号已配置。"
|