Skip to content

Instantly share code, notes, and snippets.

View cristiammercado's full-sized avatar
🏠
Working from home

Cristiam Mercado cristiammercado

🏠
Working from home
View GitHub Profile
@cristiammercado
cristiammercado / docker-compose.yml
Last active June 9, 2025 20:04
Docker compose configuration for MySQL container.
services:
mysql:
container_name: mysql
image: mysql:latest
hostname: mysql
restart: unless-stopped
command:
--authentication-policy=caching_sha2_password
--character-set-filesystem=utf8mb4
--character-set-server=utf8mb4