1
0

chore(deps): update mariadb docker tag to v11.8.6 (#3958)

This commit is contained in:
renovate[bot]
2026-02-10 15:01:04 +00:00
committed by GitHub
parent 5c9ccf1bf8
commit f8d5f84e83
4 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
#!/bin/bash
if [ -f .env ]; then
source .env
mkdir -p "$MARIADB_ROOT_PATH"
mkdir -p "$MARIADB_ROOT_PATH/config"
mkdir -p "$MARIADB_ROOT_PATH/data"
cp ./config/my.cnf "$MARIADB_ROOT_PATH/config/my.cnf"
chown -R 1000:1000 "$MYSQL_ROOT_PATH"
echo "Check Finish."
else
echo "Error: .env file not found."
fi