Skip to content

Instantly share code, notes, and snippets.

View krishnokumar84's full-sized avatar

krishnokumar84

View GitHub Profile
@hasinhayder
hasinhayder / docker-compose.yml
Last active January 31, 2025 15:57
Quickly deploy mysql and phpMyAdmin with this docker compose file
services:
mysql:
image: mysql:8.4.3
restart: always
ports:
- 3306:3306
volumes:
- ./mysql:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=root