Skip to content
Snippets Groups Projects
Commit cf2c835c authored by dimitriskr's avatar dimitriskr Committed by Andrey Postnikov
Browse files

Issue #3404256 by dimitriskr, andypost: MySQL/MariaDB containers do not use...

Issue #3404256 by dimitriskr, andypost: MySQL/MariaDB containers do not use the provided configuration
parent 279af9e7
No related branches found
No related tags found
1 merge request!37Resolve #3404256 "Fix mysql mariadb cnf permissions"
Pipeline #56381 failed
......@@ -7,7 +7,7 @@ RUN apt-get -y update || true; \
apt-get -y install netcat psmisc --no-install-recommends && \
rm -rf /var/lib/apt/lists/*
COPY ./conf/my.cnf /etc/mysql/conf.d/drupalci.cnf
COPY --chmod=644 ./conf/my.cnf /etc/mysql/conf.d/drupalci.cnf
USER root
......
......@@ -7,7 +7,7 @@ RUN apt-get -y update && \
RUN apt-get clean && apt-get autoclean && apt-get -y autoremove
COPY ./conf/my.cnf /etc/mysql/my.cnf
COPY --chmod=644 ./conf/my.cnf /etc/mysql/my.cnf
RUN rm -rf /var/lib/mysql/*
......
......@@ -7,7 +7,7 @@ RUN apt-get -y update && \
RUN apt-get clean && apt-get autoclean && apt-get -y autoremove
COPY ./conf/my.cnf /etc/mysql/my.cnf
COPY --chmod=644 ./conf/my.cnf /etc/mysql/my.cnf
RUN rm -rf /var/lib/mysql/*
......
......@@ -5,7 +5,7 @@ MAINTAINER drupalci
RUN yum install -y --setopt=skip_missing_names_on_install=False \
netcat psmisc; yum clean all
COPY ./conf/my.cnf /etc/mysql/my.cnf
COPY --chmod=644 ./conf/my.cnf /etc/mysql/my.cnf
USER root
......
......@@ -6,7 +6,7 @@ RUN apt-get -y update && \
apt-get -y install netcat psmisc --no-install-recommends && \
rm -rf /var/lib/apt/lists/*
COPY ./conf/my.cnf /etc/mysql/conf.d/drupalci.cnf
COPY --chmod=644 ./conf/my.cnf /etc/mysql/conf.d/drupalci.cnf
USER root
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment