All Projects → sclorg → Mysql Container

sclorg / Mysql Container

Licence: apache-2.0
MySQL container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Mysql Container

Mariadb Container
MariaDB container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 19 (-83.76%)
Mutual labels:  database, mysql, centos, fedora, rhel, container, openshift
mongodb-container
MongoDB container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 50 (-57.26%)
Mutual labels:  openshift, fedora, centos, container, rhel
S2i Php Container
PHP container images based on Red Hat Software Collections and intended for OpenShift and general usage, that provide a platform for building and running PHP applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 96 (-17.95%)
Mutual labels:  centos, fedora, rhel, container, openshift
S2i Python Container
Python container images based on Red Hat Software Collections and intended for OpenShift and general usage, that provide a platform for building and running Python applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 178 (+52.14%)
Mutual labels:  centos, fedora, rhel, container, openshift
S2i Nodejs Container
NodeJS images based on Red Hat Software Collections and intended for OpenShift and general usage, that provide a platform for building and running NodeJS applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 128 (+9.4%)
Mutual labels:  centos, fedora, rhel, container, openshift
s2i-ruby-container
Ruby container images based on Red Hat Software Collections and intended for OpenShift and general usage, that provide a platform for building and running Ruby applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 55 (-52.99%)
Mutual labels:  openshift, fedora, centos, container, rhel
Bitnami Docker Mariadb
Bitnami MariaDB Docker Image
Stars: ✭ 251 (+114.53%)
Mutual labels:  sql, database, mysql, docker-image
Directus Docker
Directus 6 Docker — Legacy Container [EOL]
Stars: ✭ 68 (-41.88%)
Mutual labels:  sql, database, mysql, docker-image
Alpine Mariadb
MariaDB running on Alpine Linux [Docker]
Stars: ✭ 117 (+0%)
Mutual labels:  sql, database, mysql, docker-image
Postgresql Container
PostgreSQL container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 128 (+9.4%)
Mutual labels:  database, centos, container, openshift
nginx-container
Nginx high-performance HTTP server and reverse proxy container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 77 (-34.19%)
Mutual labels:  fedora, centos, container, rhel
Goqu
SQL builder and query library for golang
Stars: ✭ 984 (+741.03%)
Mutual labels:  sql, database, mysql
Dolt
Dolt – It's Git for Data
Stars: ✭ 9,880 (+8344.44%)
Mutual labels:  sql, database, mysql
Event Management
helps to register an users for on events conducted in college fests with simple logic with secured way
Stars: ✭ 65 (-44.44%)
Mutual labels:  sql, database, mysql
Mysqldump Php
PHP version of mysqldump cli that comes with MySQL
Stars: ✭ 975 (+733.33%)
Mutual labels:  sql, database, mysql
Ebean
Ebean ORM
Stars: ✭ 1,172 (+901.71%)
Mutual labels:  sql, database, mysql
Docker Headless Vnc Container
Collection of Docker images with headless VNC environments
Stars: ✭ 1,176 (+905.13%)
Mutual labels:  centos, docker-image, openshift
Laravel Log To Db
Custom Laravel and Lumen 5.6+ Log channel handler that can store log events to SQL or MongoDB databases. Uses Laravel/Monolog native logging functionality.
Stars: ✭ 76 (-35.04%)
Mutual labels:  sql, database, mysql
Fpm Within Docker
Leverage fpm inside pre-baked docker images in order to build and test native DEB and RPM packages.
Stars: ✭ 80 (-31.62%)
Mutual labels:  centos, fedora, rhel
Docker Centos7 Ansible
CentOS 7 Docker container for Ansible playbook and role testing.
Stars: ✭ 72 (-38.46%)
Mutual labels:  centos, rhel, container

MySQL SQL Database Server Container Image

MySQL 8.0 status: Docker Repository on Quay

This repository contains Dockerfiles for MySQL images for OpenShift and general usage. Users can choose between RHEL, Fedora and CentOS based images.

For more information about using these images with OpenShift, please see the official OpenShift Documentation.

For more information about contributing, see the Contribution Guidelines. For more information about concepts used in these container images, see the Landing page.

Versions

MySQL versions currently provided are:

RHEL versions currently supported are:

  • RHEL7
  • RHEL8

CentOS versions currently supported are:

  • CentOS7

Installation

Choose either the CentOS7 or RHEL7 based image:

  • RHEL7 based image

    These images are available in the Red Hat Container Catalog. To download it run:

    $ podman pull registry.access.redhat.com/rhscl/mysql-80-rhel7
    

    To build a RHEL7 based MySQL image, you need to run Docker build on a properly subscribed RHEL machine.

    $ git clone --recursive https://github.com/sclorg/mysql-container.git
    $ cd mysql-container
    $ git submodule update --init
    $ make build TARGET=rhel7 VERSIONS=8.0
    
  • CentOS7 based image

    This image is available on DockerHub. To download it run:

    $ podman pull quay.io/centos7/mysql-80-centos7
    

    To build a CentOS based MySQL image from scratch, run:

    $ git clone --recursive https://github.com/sclorg/mysql-container.git
    $ cd mysql-container
    $ git submodule update --init
    $ make build TARGET=centos7 VERSIONS=8.0
    

For using other versions of MySQL, just replace the 8.0 value by particular version in the commands above.

Note: while the installation steps are calling podman, you can replace any such calls by docker with the same arguments.

Notice: By omitting the VERSIONS parameter, the build/test action will be performed on all provided versions of MySQL, which must be specified in VERSIONS variable. This variable must be set to a list with possible versions (subdirectories).

Usage

For information about usage of Dockerfile for MySQL 8.0, see usage documentation.

Test

This repository also provides a test framework, which checks basic functionality of the MySQL image.

Users can choose between testing MySQL based on a RHEL or CentOS image.

  • RHEL based image

    To test a RHEL7 based MySQL image, you need to run the test on a properly subscribed RHEL machine.

    $ cd mysql-container
    $ git submodule update --init
    $ make test TARGET=rhel7 VERSIONS=8.0
    
  • CentOS based image

    $ cd mysql-container
    $ git submodule update --init
    $ make test TARGET=centos7 VERSIONS=8.0
    

For using other versions of MySQL, just replace the 8.0 value by particular version in the commands above.

Notice: By omitting the VERSIONS parameter, the build/test action will be performed on all provided versions of MySQL, which must be specified in VERSIONS variable. This variable must be set to a list with possible versions (subdirectories).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].