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.

19 lines
521 B

version: "3"
services:
mysql:
image: mysql:latest
container_name: dep-mysql
environment:
MYSQL_ROOT_PASSWORD: adiao
MYSQL_DATABASE: depsystem
TZ: Asia/Shanghai
volumes:
- /root/testwork/mysql/cnf/my.cnf:/etc/mysql/my.cnf
- /root/testwork/mysql/data:/var/lib/mysql
ports:
- 3306:3306
command: --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --sql-mode='' --max-execution-time=1000