This commit is contained in:
Benjamin Toby
2025-02-16 17:12:40 +01:00
parent e9761cc971
commit e95f4d1087
628 changed files with 3091 additions and 1073 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM mariadb:11-jammy
RUN apt update
RUN apt install -y curl wget zip unzip xz-utils galera-4
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
COPY .bash_history /root/.bash_history
ENTRYPOINT ["entrypoint.sh"]
CMD [ "mariadbd" ]