Sign inSign up

scotty1701d/mariadb

By scotty1701d

Updated over 1 year ago

MariaDB container image for ARM7 32bit

Image
Databases & storage
0

1.0K

scotty1701d/mariadb repository overview

Customized version of the Docker Official Image of MariaDB

Tested environments:

  • Raspberry 2
  • Banana Pro (M2)

Supported tags:

  • 11.4.3, 11.4.3-oracular, 11.4, latest
    Based on the Official Ubuntu 24.10 (oracular) image
  • 10.11.7, 10.11.7-noble, 10.11
    Based on the Official Ubuntu 24.04 (noble) image
  • 10.11.6, 10.11.6-bookworm
    Based on a self built Debian 12 (bookworm) image
  • 10.6.16, 10.6.16-jammy, 10.6
    Based on the Official Ubuntu 22.04 (jammy) image

For further information see: MariaDB Official Image Quick Reference

Example docker-compose.yml for mariadb:

Using Adminer on http://localhost:8080
# Use root/example as user/password credentials
services:

  db:
    image: scotty1701d/mariadb
    restart: always
    environment:
      MARIADB_ROOT_PASSWORD: example

  adminer:
    image: adminer
    restart: always
    ports:
      - 8080:8080
Running as Server for other applications
You have to expose Port 3306. Additionally, some clients need access to the socket (e.g. RoundCube)
...
    ports:
      - 3306:3306
    volumes:
      - /run/mysqld:/run/mysqld
Storing databases on external media
...
    volumes:
      - /external/mysql:/var/lib/mysql:Z
or for testing purposes in the local directory
...
    volumes:
      - ./data:/var/lib/mysql:Z

Tag summary

Content type

Image

Digest

sha256:656a19d55

Size

96 MB

Last updated

over 1 year ago

docker pull scotty1701d/mariadb