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.
17 lines
480 B
17 lines
480 B
version: "3.7"
|
|
services:
|
|
mysql-slave:
|
|
container_name: mysql-slave
|
|
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:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /opt/epdc/mysql/data:/var/lib/mysql
|
|
- /opt/epdc/mysql/conf/mysql.conf.cnf:/etc/mysql/conf.d/mysql.conf.cnf
|
|
restart: always
|
|
|