upgraded mariadb

This commit is contained in:
2024-12-23 14:27:01 +01:00
parent 8976930c8a
commit d95e88ea94
5 changed files with 86 additions and 4 deletions

9
mariadb/10.11/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM almalinux:9
COPY repo /etc/yum.repos.d/MariaDB.repo
RUN yum update -y
RUN yum install MariaDB-server MariaDB-client -y
RUN /bin/rm -R /var/lib/mysql/*
COPY docker-entrypoint.sh /
RUN chmod +x /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["mysqld"]