Files
laradock/mariadb/Dockerfile
dhtmdgkr123 fc23c52d12 fix(mariadb): fix mariadb is not booting issue
1. fix mariadb is not booting issue
2023-06-28 23:08:09 +09:00

20 lines
456 B
Docker

ARG MARIADB_VERSION=latest
FROM mariadb:${MARIADB_VERSION}
LABEL maintainer="Mahmoud Zalt <mahmoud@zalt.me>"
#####################################
# Set Timezone
#####################################
ARG TZ=UTC
ENV TZ ${TZ}
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && chown -R mysql:root /var/lib/mysql/
COPY my.cnf /etc/mysql/conf.d/my.cnf
RUN chmod -R 644 /etc/mysql/conf.d/my.cnf
CMD ["mariadbd"]
EXPOSE 3306