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

23 lines
446 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:
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:
2022-10-10 22:56:42 +08:00
- ${PANEL_APP_PORT_HTTP}: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-12-04 15:59:34 +08:00
labels:
2022-12-19 12:49:19 +08:00
createdBy: "Apps"
2022-10-07 15:49:39 +08:00
networks:
1panel:
external: true