Skip to content

Commit

Permalink
Added MariaDB v10.11 (LTS)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmakarov committed Feb 16, 2024
1 parent faad715 commit e72772b
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ jobs:
-
arch: arm64
version: "10.6"
-
arch: amd64
version: "10.11"
-
arch: arm64
version: "10.11"

env:
ARCH: ${{ matrix.arch }}
Expand Down Expand Up @@ -144,6 +150,12 @@ jobs:
# -
# arch: arm64
# version: "10.6"
-
arch: amd64
version: "10.11"
# -
# arch: arm64
# version: "10.11"

env:
ARCH: ${{ matrix.arch }}
Expand Down Expand Up @@ -229,6 +241,7 @@ jobs:
- "10.4"
- "10.5"
- "10.6"
- "10.11"

env:
VERSION_PREFIX: ""
Expand Down
24 changes: 24 additions & 0 deletions 10.11/default.cnf
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[mysqld]
# Force utf8mb4 (multi-byte UTF) encoding (supports emojis, Asian symbols, mathematical symbols, etc.)
# Starting with mariadb 10.5, character-set-server and collation-server can only be set via command line arguments.
#character-set-server = utf8mb4
#collation-server = utf8mb4_unicode_ci

# Always use server character set settings
skip-character-set-client-handshake

# Set innodb as default
default_storage_engine = InnoDB

innodb_buffer_pool_size = 256M
innodb_log_buffer_size = 8M
innodb_log_file_size = 128MB

innodb_file_per_table = 1

# See https://github.com/docksal/service-db/pull/1
#innodb_file_format = Barracuda
#innodb_large_prefix = 1

# Max packets
max_allowed_packet = 128M
17 changes: 17 additions & 0 deletions 10.11/mysql-variables.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
character_set_client utf8mb4
character_set_connection utf8mb4
character_set_database utf8mb4
character_set_filesystem binary
character_set_results utf8mb4
character_set_server utf8mb4
character_set_system utf8mb3
collation_connection utf8mb4_unicode_ci
collation_database utf8mb4_unicode_ci
collation_server utf8mb4_unicode_ci
default_storage_engine InnoDB
innodb_buffer_pool_size 268435456
innodb_file_per_table ON
innodb_flush_log_at_trx_commit 1
innodb_log_buffer_size 8388608
innodb_log_file_size 134217728
max_allowed_packet 134217728
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ This image(s) is part of the [Docksal](http://docksal.io) image library.

- `docksal/mariadb:10.4`
- `docksal/mariadb:10.5`
- `docksal/mariadb:10.6`, `docksal/mariadb:latest`
- `docksal/mariadb:10.6` (LTS)
- `docksal/mariadb:10.11` (LTS), `docksal/mariadb:latest`

0 comments on commit e72772b

Please sign in to comment.