mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-02 17:29:20 +02:00
12 lines
264 B
Text
12 lines
264 B
Text
# File: Dockerfile.mariadb
|
|
|
|
FROM mariadb:latest
|
|
|
|
# Set correct permissions for /tmp directory
|
|
RUN chmod 1777 /tmp
|
|
|
|
RUN chown -R mysql:mysql /var/lib/mysql
|
|
RUN chmod -R 755 /var/lib/mysql
|
|
|
|
# Copy custom MySQL configuration file
|
|
COPY deploy/my.cnf /etc/mysql/my.cnf
|