12 lines
181 B
Docker
12 lines
181 B
Docker
FROM mariadb:latest
|
|
|
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
|
|
|
COPY my.cnf /etc/mysql/conf.d/my.cnf
|
|
|
|
RUN chmod -R 644 /etc/mysql/conf.d/my.cnf
|
|
|
|
CMD ["mysqld"]
|
|
|
|
EXPOSE 3306
|