Skip to content

Instantly share code, notes, and snippets.

View Khashrul's full-sized avatar
🎯
Focusing

B.M. Khashrul Alam Khashrul

🎯
Focusing
View GitHub Profile
@Khashrul
Khashrul / docker-compose.yml
Created December 23, 2024 06:56 — forked from hasinhayder/docker-compose.yml
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