上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 61 下一页
摘要: 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 剑握在手 阅读(994) 评论(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 剑握在手 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 1、首先要有个阿里云的账号 2、访问:https://cr.console.aliyun.com 3、登陆后可看到: 我的加速地址:https://g65zw8cl.mirror.aliyuncs.com 阅读全文
posted @ 2018-03-19 17:54 剑握在手 阅读(1381) 评论(0) 推荐(1) 编辑
摘要: 1、设置Docker服务端,以支持远程访问: 修改docker服务端配置文件,命令: 修改后: 以上加粗的蓝色内容即是新增配置,注意我使用的Docker版本为 Docker version 17.09.0-ce, build afdb6d4 不同的版本可能配置文件内容不一样。 刷新配置、重启dock 阅读全文
posted @ 2018-03-15 17:07 剑握在手 阅读(2550) 评论(5) 推荐(0) 编辑
摘要: 其他相关玩法 可以搜索 mysql 和 redis 结合使用 阅读全文
posted @ 2018-03-15 14:54 剑握在手 阅读(2341) 评论(1) 推荐(0) 编辑
摘要: 今天单独使用SpringBoot,发现其中的bootstrap.properties文件无法生效,改成yaml格式也无济于事。 最后调查发现原来是因为SpringBoot本身并不支持,需要和Spring Cloud 的组件结合——只有加上Spring Cloud Context依赖才能生效。 即在p 阅读全文
posted @ 2018-03-15 09:04 剑握在手 阅读(13634) 评论(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 剑握在手 阅读(176) 评论(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 剑握在手 阅读(454) 评论(0) 推荐(0) 编辑
摘要: yum方式: 编译方式: 一、下载nginx安装包 访问地址:https://nginx.org 根据自己的需求下载合适的安装包 二、安装gcc gcc是用来编译下载下来的nginx源码 yum install gcc-c++ 三、安装pcre和pcre-develPCRE(Perl Compati 阅读全文
posted @ 2018-03-12 16:57 剑握在手 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 推荐一个在线工具,可以将yaml转换为properties,同时也支持反向转换 http://www.toyaml.com 非常好记的地址,to yaml,直接在地址栏里输入toyaml.com,省去各种麻烦的搜索步骤,我平时就这么做的,好用请点个赞 yml,即yaml文本格式文件的后缀名,yaml 阅读全文
posted @ 2018-03-09 14:52 剑握在手 阅读(2550) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 61 下一页
返回顶部↑