Files
lemp-dockerized/mariadb-srv/project/entrypoint/fix_volumes.sh
2025-08-04 11:43:29 +02:00

10 lines
295 B
Bash

#!/bin/sh
mkdir -p /etc/mysql # Creates /etc/php if it doesn't exist
mkdir -p /var/lib/mysql # Creates /etc/php if it doesn't exist
mv /tmp/buildtime/etc/mysql/* /etc/mysql/
mv /tmp/buildtime/var/lib/mysql/* /var/lib/mysql
chown -R mysql:mysql /var/lib/mysql
chown -R mysql:root /run/mysqld