mirror of https://github.com/1Panel-dev/1Panel
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.
26 lines
588 B
26 lines
588 B
version: '3'
|
|
|
|
services:
|
|
mysql5.7:
|
|
image: mysql:5.7.39
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: ${PANEL_DB_ROOT_PASSWORD}
|
|
networks:
|
|
- 1panel
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:3306
|
|
volumes:
|
|
- ./data/:/var/lib/mysql
|
|
- ./conf/my.cnf:/etc/mysql/my.cnf
|
|
- ./log:/var/log/mysql
|
|
command:
|
|
--character-set-server=utf8mb4
|
|
--collation-server=utf8mb4_general_ci
|
|
--explicit_defaults_for_timestamp=true
|
|
--lower_case_table_names=1
|
|
|
|
networks:
|
|
1panel:
|
|
external: true |