You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
# 本地 MySQL(可选):与本项目 .env 中 DB_PORT=3307、库名/账号默认对齐
|
|
|
|
|
|
# 启动:docker compose up -d
|
|
|
|
|
|
# 停止:docker compose down
|
|
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
mysql:
|
|
|
|
|
|
image: mysql:8.0
|
|
|
|
|
|
container_name: slake-school-mysql
|
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
environment:
|
|
|
|
|
|
MYSQL_DATABASE: slake_school
|
|
|
|
|
|
MYSQL_USER: slake
|
|
|
|
|
|
MYSQL_PASSWORD: slake_local
|
|
|
|
|
|
MYSQL_ROOT_PASSWORD: root_local
|
|
|
|
|
|
ports:
|
|
|
|
|
|
- "3307:3306"
|
|
|
|
|
|
volumes:
|
|
|
|
|
|
- slake_school_mysql:/var/lib/mysql
|
|
|
|
|
|
command: >
|
|
|
|
|
|
--default-authentication-plugin=mysql_native_password
|
|
|
|
|
|
--character-set-server=utf8mb4
|
|
|
|
|
|
--collation-server=utf8mb4_unicode_ci
|
|
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
|
slake_school_mysql:
|