MariaDB (MySQL fork) - Docker Image for amd64, arm64, arm (Raspberry Pi)
1M+
Dockerfile links10.11-alpine (Dockerfile) (on AlpineLinux 3.20)10.11-debian (Dockerfile) (on Debian 12 (bookworm))10.11-ubuntu (Dockerfile) (on Ubuntu 24.04 (noble))Notes:
amd64 and arm64 it is recommended to use the official images based on Ubuntu and not these !MariaDB Server is one of the most popular database servers in the world. It’s made by the original developers of MySQL and guaranteed to stay open source. Notable users include Wikipedia, DBS Bank, and ServiceNow.
The intent is also to maintain high compatibility with MySQL, ensuring a library binary equivalency and exact matching with MySQL APIs and commands. MariaDB developers continue to develop new features and improve performance to better serve its users.

docker run --name some-mariadb \
-v $(pwd)/mariadb:/var/lib/mysql:rw \
-p 3306:3306 \
-e MARIADB_ROOT_PASSWORD=my-secret-pw \
-d tobi312/rpi-mariadb:10.11-alpine
more see official MariaDB-Images
version: '2.4'
services:
mariadb:
image: tobi312/rpi-mariadb:10.11-alpine
container_name: mariadb
restart: unless-stopped
volumes:
- ./mariadb-data:/var/lib/mysql:rw
environment:
TZ: Europe/Berlin
#MARIADB_RANDOM_ROOT_PASSWORD: "yes"
MARIADB_ROOT_PASSWORD: my-secret-pw
MARIADB_DATABASE: user-database
MARIADB_USER: example-user
MARIADB_PASSWORD: my_cool_secret
ports:
- 3306:3306
more see docker-compose.yml-File.
Content type
Image
Digest
sha256:835577f24…
Size
95.9 MB
Last updated
3 days ago
docker pull tobi312/rpi-mariadb:10.11-alpine-20260916101318.03226983