MySQL is the world's most popular open-source database, trusted by thousands of organizations to power their applications, hardware, and services. It provides a comprehensive set of advanced features and management tools to achieve high levels of scalability, security, and reliability for web, cloud, and communications services.
With MySQL, you can develop and deploy applications with confidence. It offers uncompromising uptime and agility, making it a solid choice for mission-critical systems. The platform is also a preferred embedded database for over 2,000 ISVs, OEMs, and VARs, helping them bring products to market faster.
Key capabilities include:
services:
mysql:
image: mysql:8
container_name: mysql
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
MYSQL_DATABASE: ${MYSQL_DATABASE}
MYSQL_USER: ${MYSQL_USER}
MYSQL_PASSWORD: ${MYSQL_PASSWORD}
ports:
- "3306:3306"
volumes:
- ./mysql-data:/var/lib/mysqlMYSQL_ROOT_PASSWORD=super_secret_root_password
MYSQL_DATABASE=my_database
MYSQL_USER=my_user
MYSQL_PASSWORD=super_secret_passwordAuto-fetched about 20 hours ago
Auto-fetched about 20 hours ago