fedora-cloud / Fedora-Dockerfiles

Fedora Dockerfiles - No longer maintained. See: https://fedoraproject.org/wiki/Changes/Layered_Docker_Image_Build_Service
GNU General Public License v2.0
401 stars 253 forks source link

building mariadb fails #250

Open josergc opened 7 years ago

josergc commented 7 years ago

Check out the git repo, then cd mariadb docker build --rm -t test/mariadb . I see the mariadb-server installed is mariadb-server.x86_64 3:10.1.20-1.fc25 then The command '/bin/sh -c INSTALL_PKGS="rsync tar gettext hostname bind-utils policycoreutils mariadb-server" && dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && rpm -V $INSTALL_PKGS && dnf clean all && mkdir -p /var/lib/mysql/data && chown -R mysql.0 /var/lib/mysql && rpm -q --qf '%{version}' mariadb-server | grep -e '10\.0\.' && test "$(id mysql)" = "uid=27(mysql) gid=27(mysql) groups=27(mysql)"' returned a non-zero code: 1 because it is expected the version 10.0 to be installed instead of the version 10.1, right?