10 lines
245 B
Bash
10 lines
245 B
Bash
#! /bin/sh
|
|
|
|
#
|
|
# MySQL install tools
|
|
# Install mysql and mysqldump to container
|
|
# - mariadb-client (mariadb tools)
|
|
# - mariadb-connector-c (fills the gap with new sha password protocol)
|
|
#
|
|
|
|
apk update && apk add mariadb-client mariadb-connector-c; |