mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
19 lines
383 B
YAML
19 lines
383 B
YAML
version: '3'
|
|
services:
|
|
mysql:
|
|
image: mysql:8.0.33
|
|
container_name: chatgpt-plus-mysql
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
restart: always
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=12345678
|
|
ports:
|
|
- "3307:3306"
|
|
volumes:
|
|
- ./conf/my.cnf:/etc/mysql/my.cnf
|
|
- ./data:/var/lib/mysql
|
|
- ./logs:/var/log/mysql
|
|
|
|
|
|
|