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