blackbirdchess-docker-dev/mariadb/Dockerfile
2019-01-24 20:25:08 +03:00

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