Version:0.0.1.dev.260202.hotfix

DevOps & Docs:
Added docker-compose.yml for seamless MySQL 8.0 & environment setup. 🐳
Updated README.md with corrections for mistakes in image quoting and formats. 📝
运维与文档:
新增 docker-compose.yml,实现 MySQL 8.0 环境的一键启动。🐳
更新 README.md,修改了一些图片引用和格式上小错误。📝
This commit is contained in:
LoveLosita
2026-02-02 21:40:15 +08:00
parent 78aa38a6f3
commit 20dea595cd
5 changed files with 6 additions and 8 deletions

View File

@@ -1,5 +1,3 @@
version: '3.8'
services:
# MySQL 数据库服务
mysql:
@@ -8,9 +6,9 @@ services:
restart: always
environment:
MYSQL_ROOT_PASSWORD: root_password_123 # Root 用户密码
MYSQL_DATABASE: redflow # 初始创建的数据库名
MYSQL_USER: redflow_user # 业务用户
MYSQL_PASSWORD: redflow_password_456 # 业务用户密码
MYSQL_DATABASE: smartflow # 初始创建的数据库名
MYSQL_USER: smartflow_user # 业务用户
MYSQL_PASSWORD: smartflow_password_456 # 业务用户密码
ports:
- "3306:3306"
volumes: