Favicon of MariaDB (Official)

MariaDB (Official)

Access a powerful open source relational database from the creators of MySQL. Benefit from advanced clustering, temporal data, and Oracle compatibility.

MariaDB Server is a leading open-source relational database, created by the original developers of MySQL and guaranteed to remain open source. It is a standard component in most cloud platforms and the default database in the majority of Linux distributions, making it widely accessible and easy to deploy.

Built on the core principles of performance, stability, and openness, the project is managed by the MariaDB Foundation, which ensures contributions are accepted based on technical merit. It offers a rich feature set designed for modern applications, including:

  • Advanced clustering with Galera Cluster 4 for high availability.
  • Compatibility features with Oracle Database to simplify migration.
  • Temporal Data Tables that allow you to query data as it existed at any point in the past.

The server thrives thanks to a vibrant community of developers and users. Contributions are welcomed in many forms, from code and documentation to bug reports, ensuring continuous innovation and improvement.

Directory Structure

mariadb-official
mariadb
mysql-data
.env
docker-compose.yml

docker-compose.yml

services:
  mariadb:
    image: mariadb:latest
    container_name: mariadb
    restart: unless-stopped
    environment:
      MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD}
      MARIADB_DATABASE: ${MARIADB_DATABASE}
      MARIADB_USER: ${MARIADB_USER}
      MARIADB_PASSWORD: ${MARIADB_PASSWORD}
    ports:
      - "3306:3306"
    volumes:
      - ./mysql-data:/var/lib/mysql

.env

MARIADB_ROOT_PASSWORD=your_super_secret_root_password
MARIADB_DATABASE=my_database
MARIADB_USER=my_user
MARIADB_PASSWORD=your_super_secret_password
Categories:

Share:

Ad
Favicon

 

  
 

Similar to MariaDB (Official)

Favicon

 

  
  
Favicon

 

  
  
Favicon