From 14d10bc21087e3734d4e7ac15883c76d0cd19818 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Sat, 17 Mar 2018 21:07:38 +0100 Subject: MySQL 5.7 with Galera (produced as combination of standard MySQL container and openshift-mariadb-galera by adfinis-sygroup) --- Dockerfile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..02c5ca3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,28 @@ +FROM centos/mysql-57-centos7 + +USER root + +COPY root-galera/etc/yum.repos.d/galera.repo /etc/yum.repos.d/ + + +RUN INSTALL_PKGS="galera-3 mysql-wsrep-5.7 iproute rsync which socat percona-xtrabackup-24 bind-utils policycoreutils" && \ + yum install -y epel-release && \ + yum remove -y rh-mysql57-mysql-server && \ + yum install -y http://www.percona.com/downloads/percona-release/redhat/0.1-4/percona-release-0.1-4.noarch.rpm && \ + yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ + yum install -y --setopt=tsflags=nodocs mc && \ + rpm -V $INSTALL_PKGS && \ + yum clean all + +COPY root-galera / + +ENV MYSQL_PREFIX=/usr \ + ENABLED_COLLECTIONS="" + +RUN rm -rf /etc/my.cnf.d/* && \ + cp --remove-destination $(readlink /etc/my.cnf) /etc/my.cnf && \ + ln -s /usr/sbin/mysqld /usr/libexec/mysqld && \ + /usr/libexec/container-setup && rpm-file-permissions + + +USER 27 -- cgit v1.2.1