mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 19:42:38 +02:00
9 lines
191 B
Text
9 lines
191 B
Text
# File: Dockerfile.mariadb
|
|
|
|
FROM mariadb:latest
|
|
|
|
# Set correct permissions for /tmp directory
|
|
RUN chmod 1777 /tmp
|
|
|
|
# Copy custom MySQL configuration file
|
|
COPY deploy/my.cnf /etc/mysql/my.cnf
|