mirror of https://github.com/ZhongFuCheng3y/austin
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.
18 lines
359 B
18 lines
359 B
version: '3'
|
|
|
|
services:
|
|
mysql:
|
|
image: mysql:5.7
|
|
container_name: mysql
|
|
restart: always
|
|
ports:
|
|
- 3306:3306
|
|
volumes:
|
|
- mysql-data:/var/lib/mysql
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: root123_A
|
|
TZ: Asia/Shanghai
|
|
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
|
|
volumes:
|
|
mysql-data:
|