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
476 B
18 lines
476 B
6 years ago
|
version: "3.7"
|
||
|
services:
|
||
|
mysql-master:
|
||
|
container_name: mysql-master
|
||
|
image: mysql:5.7.29
|
||
|
ports:
|
||
|
- 9600:3306
|
||
|
environment:
|
||
|
TZ: Asia/Shanghai
|
||
|
MYSQL_ROOT_PASSWORD: epdc!elink1405
|
||
|
MYSQL_LOWER_CASE_TABLE_NAMES: 1
|
||
|
volumes:
|
||
|
- /etc/localtime:/etc/localtime
|
||
|
- /etc/timezone:/etc/timezone
|
||
|
- /opt/epdc/mysql/data:/var/lib/mysql
|
||
|
- /opt/epdc/mysql/conf/mysql.conf.cnf:/etc/mysql/conf.d/mysql.conf.cnf
|
||
|
restart: always
|