Skip to content

Instantly share code, notes, and snippets.

View matheustkn's full-sized avatar

Matheus Lima matheustkn

View GitHub Profile
@matheustkn
matheustkn / docker-compose.yml
Last active January 20, 2025 11:39
MySQL with phpmyadmin for docker
services:
db:
image: mysql
container_name: mysql-db
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 1
ports:
- "3306:3306"
volumes:
- db_data:/var/lib/mysql