mirror of
https://github.com/dockersrc/alpine
synced 2025-09-18 03:57:51 -04:00
Some checks failed
alpine-3-16 / alpine-3-16 (push) Failing after 38m2s
alpine-3-15 / alpine-3-15 (push) Failing after 44m31s
alpine-3-14 / alpine-3-14 (push) Failing after 48m18s
alpine-latest / alpine-latest (push) Failing after 12m15s
alpine-edge / alpine-edge (push) Failing after 12m23s
alpine-3-20 / alpine-3-20 (push) Failing after 12m47s
alpine-3-22 / alpine-3-20 (push) Failing after 30m58s
alpine-3-21 / alpine-3-20 (push) Failing after 50m35s
alpine-3-19 / alpine-3-19 (push) Failing after 50m47s
alpine-3-18 / alpine-3-18 (push) Failing after 50m58s
alpine-3-17 / alpine-3-17 (push) Failing after 51m0s
15 lines
830 B
Bash
15 lines
830 B
Bash
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# mariadb env
|
|
MARIADB_ROOT_HOST="${MARIADB_ROOT_HOST:-%}"
|
|
MARIADB_AUTO_UPGRADE="${MARIADB_AUTO_UPGRADE:-yes}"
|
|
MARIADB_DATABASE="${MARIADB_DATABASE:-$DATABASE_CREATE}"
|
|
MARIADB_USER="${MARIADB_USER:-$DATABASE_USER_NORMAL}"
|
|
MARIADB_PASSWORD="${MARIADB_PASSWORD:-$DATABASE_PASS_NORMAL}"
|
|
DATABASE_DIR_MARIADB="${DATABASE_DIR_MARIADB:-/data/db/mariadb}"
|
|
MARIADB_ROOT_PASSWORD="${MARIADB_ROOT_PASSWORD:-$DATABASE_PASS_ROOT}"
|
|
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD="${MARIADB_ALLOW_EMPTY_ROOT_PASSWORD:-}"
|
|
MARIADB_INITDB_SKIP_TZINFO="${MARIADB_INITDB_SKIP_TZINFO}:-"
|
|
MARIADB_RANDOM_ROOT_PASSWORD="${MARIADB_RANDOM_ROOT_PASSWORD:-}"
|
|
MARIADB_CONFIG_FILE="${MARIADB_CONFIG_FILE:-$(__find_mysql_conf)}"
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|