15 lines
218 B
Bash
15 lines
218 B
Bash
#!/bin/sh
|
|
|
|
/bin/sh /entrypoint/install-packages.sh
|
|
|
|
chown -R mysql:mysql /run/mysqld
|
|
chown -R mysql:mysql /var/lib/mysql
|
|
|
|
service mariadb start
|
|
|
|
# Run the CMD that was passed (or default)
|
|
exec "$@"
|
|
|
|
tail -f /dev/null
|
|
|