Skip to content

Instantly share code, notes, and snippets.

View idealapps-code's full-sized avatar

IDEALAPPS LLC idealapps-code

View GitHub Profile
@idealapps-code
idealapps-code / compose.yaml
Last active May 14, 2026 17:59
Docker Compose - Services
services:
mysql:
image: mysql:8.4
environment:
MYSQL_ROOT_PASSWORD: 12345678
volumes:
- mysql_data:/var/lib/mysql
ports:
- "3306:3306"
phpmyadmin: