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:
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.
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/mysqlMARIADB_ROOT_PASSWORD=your_super_secret_root_password
MARIADB_DATABASE=my_database
MARIADB_USER=my_user
MARIADB_PASSWORD=your_super_secret_passwordAuto-fetched 32 minutes ago
Auto-fetched 32 minutes ago