Skip to content

Instantly share code, notes, and snippets.

View habibor-rahaman1010's full-sized avatar
🎯
Focusing

Habibor Rahaman habibor-rahaman1010

🎯
Focusing
View GitHub Profile
@habibor-rahaman1010
habibor-rahaman1010 / docker-compose.yml
Created January 31, 2025 15:18 — 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