Sign inSign up

tobi312/rpi-mariadb

By tobi312

Updated 3 days ago

MariaDB (MySQL fork) - Docker Image for amd64, arm64, arm (Raspberry Pi)

Image
Databases & storage
16

1M+

tobi312/rpi-mariadb repository overview

MariaDB (MySQL fork) - Docker Image for amd64, arm64, arm

Notes:

What is MariaDB?

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.

logo

About these images:
How to use these images:
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

Docker-Compose
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.

This Image on

Tag summary

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