1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 08:49:16 +08:00
1Panel/apps/mysql/versions/5.7.39/docker-compose.yml

27 lines
623 B
YAML
Raw Normal View History

version: '3'
services:
mysql5.7:
image: mysql:5.7.39
container_name: ${CONTAINER_NAME}
restart: always
environment:
MYSQL_ROOT_PASSWORD: ${PANEL_DB_ROOT_PASSWORD}
2022-10-07 15:49:39 +08:00
networks:
- 1panel
ports:
2022-10-10 22:56:42 +08:00
- ${PANEL_APP_PORT_HTTP}:3306
volumes:
- ./data/:/var/lib/mysql
- ./conf/my.cnf:/etc/mysql/my.cnf
2022-09-27 22:53:24 +08:00
- ./log:/var/log/mysql
command:
--character-set-server=utf8mb4
--collation-server=utf8mb4_general_ci
--explicit_defaults_for_timestamp=true
--lower_case_table_names=1
2022-12-04 15:59:34 +08:00
labels:
createdBy: "apps"
networks:
1panel:
external: true