laradock/mariadb/Dockerfile

10 lines
137 B
Docker
Raw Normal View History

2016-05-09 09:23:03 +08:00
FROM mariadb:latest
2018-03-16 17:34:47 +08:00
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
2016-05-09 09:23:03 +08:00
2017-02-11 10:51:10 +08:00
ADD my.cnf /etc/mysql/conf.d/my.cnf
2016-05-09 09:23:03 +08:00
CMD ["mysqld"]
EXPOSE 3306