上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 61 下一页
摘要: 场景描述: Eureka的集群节点有两个,互相注册形成集群,已经支持动态刷新(不知道怎么让Eureka支持动态刷新的可以参考http://www.cnblogs.com/flying607/p/8459397.html),已经在运行,使用nginx做负载均衡,代理该集群,服务的注册中心地址直接写ng 阅读全文
posted @ 2018-03-30 16:42 剑握在手 阅读(3612) 评论(0) 推荐(0)
摘要: 对于指定版本的问题,翻遍官网文档和github上的issue,始终没有一个好的回答,而且该产品的开发人员不知道为什么总不正面提供方法,也许是为了推广新版本, 但是这样真的好吗?docker swarm要求docker版本统一,docker-machine只提供最新版的升级捷径,并且默认安装的也是最新 阅读全文
posted @ 2018-03-27 18:25 剑握在手 阅读(1569) 评论(0) 推荐(0)
摘要: One of the latest beta features of the open source Docker v2 Registry is the ability to act as a registry proxy cache for images hosted at Docker Hub. 阅读全文
posted @ 2018-03-26 15:19 剑握在手 阅读(1007) 评论(0) 推荐(0)
摘要: sudo curl -L https://raw.githubusercontent.com/docker/compose/1.19.0/contrib/completion/bash/docker-compose -o /etc/bash_completion.d/docker-compose sudo chmod +x /usr/local/bin/docker-compose dock... 阅读全文
posted @ 2018-03-19 18:19 剑握在手 阅读(450) 评论(0) 推荐(0)
摘要: 1、首先要有个阿里云的账号 2、访问:https://cr.console.aliyun.com 3、登陆后可看到: 我的加速地址:https://g65zw8cl.mirror.aliyuncs.com 阅读全文
posted @ 2018-03-19 17:54 剑握在手 阅读(1400) 评论(0) 推荐(1)
摘要: 1、设置Docker服务端,以支持远程访问: 修改docker服务端配置文件,命令: 修改后: 以上加粗的蓝色内容即是新增配置,注意我使用的Docker版本为 Docker version 17.09.0-ce, build afdb6d4 不同的版本可能配置文件内容不一样。 刷新配置、重启dock 阅读全文
posted @ 2018-03-15 17:07 剑握在手 阅读(2571) 评论(5) 推荐(0)
摘要: 其他相关玩法 可以搜索 mysql 和 redis 结合使用 阅读全文
posted @ 2018-03-15 14:54 剑握在手 阅读(2358) 评论(1) 推荐(0)
摘要: 今天单独使用SpringBoot,发现其中的bootstrap.properties文件无法生效,改成yaml格式也无济于事。 最后调查发现原来是因为SpringBoot本身并不支持,需要和Spring Cloud 的组件结合——只有加上Spring Cloud Context依赖才能生效。 即在p 阅读全文
posted @ 2018-03-15 09:04 剑握在手 阅读(13771) 评论(0) 推荐(2)
摘要: 查看所有镜像: docker images 删除镜像: docker rmi <镜像名称或ID> 删除所有容器: docker rm $(docker ps -a -q) 删除所有镜像: docker rmi -f $(docker images -q) 查看所有容器: docker ps -a 查 阅读全文
posted @ 2018-03-13 18:31 剑握在手 阅读(186) 评论(0) 推荐(0)
摘要: 本文参考官网地址:https://docs.docker.com/install/linux/docker-ce/centos/#os-requirements 1、卸载旧版本的docker 2、安装依赖的工具 yum-utils 提供了 yum-config-manager 功能,该功能后边会用到 阅读全文
posted @ 2018-03-13 17:56 剑握在手 阅读(472) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 61 下一页
返回顶部↑