Skip to content

Instantly share code, notes, and snippets.

View tanayc0009's full-sized avatar
🎯
Focused

Tanay C tanayc0009

🎯
Focused
  • Tanay's Authority
  • Dhaka,Bangladesh
  • 18:19 (UTC +06:00)
  • X @tanayc0009
View GitHub Profile
@tanayc0009
tanayc0009 / docker-compose.yml
Created January 31, 2025 15:57 — 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