2023-02-06 15:53:30 +08:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
2023-02-07 15:21:24 +08:00
|
|
|
mysql:
|
2023-08-03 14:49:18 +08:00
|
|
|
image: mysql:8.1.0
|
2023-02-06 15:53:30 +08:00
|
|
|
container_name: ${CONTAINER_NAME}
|
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
MYSQL_ROOT_PASSWORD: ${PANEL_DB_ROOT_PASSWORD}
|
|
|
|
networks:
|
2023-02-13 15:30:25 +08:00
|
|
|
- 1panel-network
|
2023-02-06 15:53:30 +08:00
|
|
|
ports:
|
|
|
|
- ${PANEL_APP_PORT_HTTP}:3306
|
|
|
|
volumes:
|
|
|
|
- ./data/:/var/lib/mysql
|
|
|
|
- ./conf/my.cnf:/etc/my.cnf
|
|
|
|
- ./log:/var/log/mysql
|
2023-05-05 15:20:57 +08:00
|
|
|
- /etc/timezone:/etc/timezone:ro
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2023-02-06 15:53:30 +08:00
|
|
|
labels:
|
|
|
|
createdBy: "Apps"
|
2023-02-07 15:21:24 +08:00
|
|
|
command:
|
|
|
|
- --default-authentication-plugin=mysql_native_password
|
2023-02-06 15:53:30 +08:00
|
|
|
networks:
|
2023-02-13 15:30:25 +08:00
|
|
|
1panel-network:
|
2023-02-07 15:21:24 +08:00
|
|
|
external: true
|