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

22 lines
421 B
YAML
Raw Normal View History

2022-09-26 19:08:12 +08:00
version: '3'
services:
mysql8.0:
image: mysql:8.0.30
container_name: ${CONTAINER_NAME}
restart: always
environment:
TZ: ${TZ}
MYSQL_ROOT_PASSWORD: ${PANEL_DB_ROOT_PASSWORD}
2022-10-07 15:49:39 +08:00
networks:
- 1panel
2022-09-26 19:08:12 +08:00
ports:
- ${PANEL_APP_PORT}:3306
2022-09-26 19:08:12 +08:00
volumes:
- ./data/:/var/lib/mysql
2022-10-07 15:49:39 +08:00
- ./conf/my.cnf:/etc/my.cnf
2022-09-27 22:53:24 +08:00
- ./log:/var/log/mysql
2022-10-07 15:49:39 +08:00
networks:
1panel:
external: true