Skip to content

Instantly share code, notes, and snippets.

@w0rldart
w0rldart / docker-compose.yaml
Last active February 12, 2024 15:49
MariaDB docker-compose with UTF8 Collation
version: '3.1'
services:
db:
image: mariadb
restart: always
command: mysqld --character-set-server=utf8 --collation-server=utf8_unicode_ci --init-connect='SET NAMES UTF8;' --innodb-flush-log-at-trx-commit=0
ports:
- 3306:3306