码迷,mamicode.com
首页 > 数据库 > 详细

dokcerfile 制作Msql镜像

时间:2020-03-20 12:37:00      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:color   div   制作   deploy   open   最新版   镜像   pen   highlight   

dokcerfile 制作Msql镜像

拷贝Mysql配置文件

kubectl cp mysql-open-deploy-cdbb78987-w7rlq:/etc/mysql/mysql.cnf ./mysql.cnf

  

去 dockerhub 下载最新版mysql

docker pull mysql:5.7.29
docker tag mysql:5.7.29 192.168.188.64:5000/mysql5.7.29

 

编辑dockerfile文件

vim  dockerfile

FROM ubuntu:16.04 COPY mysql.cnf /etc/mysql/
docker build -t 192.168.188.64:5000/mysql5.7.29 -f dockerfile .

 

docker save 192.168.188.64:5000/mysql5.7.29:latest |gzip >> mysql5.7.29.tar.gz

docker load < mysql5.7.29.tar.gz 
docker tag  192.168.188.64:5000/mysql5.7.29 172.21.6.201:5000/mysql5.7.29
docker push 172.21.6.201:5000/mysql5.7.29

kubectl delete pod mysql 

 

dokcerfile 制作Msql镜像

标签:color   div   制作   deploy   open   最新版   镜像   pen   highlight   

原文地址:https://www.cnblogs.com/hanwei999/p/12530787.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!