31a4e29c81
Should only use `ADD` for URLs (and even then, `curl` or `wget` are preferred, for numerous reasons, even within this repo) and when extracting archive contents as part of the `ADD` operation; otherwise `COPY` is clearer and (slightly) more efficient.
10 lines
138 B
Docker
10 lines
138 B
Docker
FROM mariadb:latest
|
|
|
|
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
|
|
|
|
COPY my.cnf /etc/mysql/conf.d/my.cnf
|
|
|
|
CMD ["mysqld"]
|
|
|
|
EXPOSE 3306
|