Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
D
docker-iot-v3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
deploy
docker-iot-v3
Commits
d05e10ce
Commit
d05e10ce
authored
Sep 22, 2022
by
chonghaohao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
9f13a29b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
docker-compose-mysql.yml
docker-compose-mysql.yml
+26
-0
No files found.
docker-compose-mysql.yml
0 → 100644
View file @
d05e10ce
version
:
'
3'
services
:
mysql
:
image
:
mysql:8.0.26
container_name
:
mysql
command
:
# MySQL8的密码验证方式默认是 caching_sha2_password,但是很多的连接工具还不支持该方式
# 就需要手动设置下mysql的密码认证方式为以前的 mysql_native_password 方式
--default-authentication-plugin=mysql_native_password
--character-set-server=utf8mb4
--collation-server=utf8mb4_general_ci
--lower-case-table-names=1
# 设置表名大小写不敏感
# docker的重启策略:在容器退出时总是重启容器,但是不考虑在Docker守护进程启动时就已经停止了的容器
restart
:
unless-stopped
environment
:
MYSQL_ROOT_PASSWORD
:
huansi@V3
# root用户的密码
MYSQL_USER
:
huansi
# 创建新用户
MYSQL_PASSWORD
:
huansi.net
# 新用户的密码
TZ
:
Asia/Shanghai
ports
:
-
3306:3306
volumes
:
-
./mysql/data:/var/lib/mysql
-
./mysql/conf:/etc/mysql/conf.d
-
./mysql/logs:/logs
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment