摘要: 1.在pom.xml中配置 <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>${docker-maven-plugin.version}</version> < 阅读全文
posted @ 2020-01-02 16:59 panchanggui 阅读(2304) 评论(0) 推荐(0) 编辑
摘要: 一、编辑docker文件:/usr/lib/systemd/system/docker.service 命令:vim /usr/lib/systemd/system/docker.service 修改ExecStart行,增加内容 -H tcp://0.0.0.0:2375 ,修改后如下: Exec 阅读全文
posted @ 2020-01-02 16:56 panchanggui 阅读(3215) 评论(0) 推荐(0) 编辑
摘要: 一般在一个项目中,总是会有好多个环境。比如: 开发环境 -> 测试环境 -> 预发布环境【验证环境】 -> 生产环境 每个环境上的配置文件总是不一样的,甚至开发环境中每个开发者的环境可能也会有一点不同,配置读取可是一个让人有点伤脑筋的问题。 Spring Boot提供了一种优先级配置读取的机制来帮助 阅读全文
posted @ 2020-01-02 16:47 panchanggui 阅读(5272) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 6 7 8 9 阅读全文
posted @ 2020-01-02 16:45 panchanggui 阅读(466) 评论(1) 推荐(0) 编辑
摘要: 当docker启动SpringBoot打包的服务时,且一些参数需要从外界获取而非写死在properties文件里,通过以下两步完成此需求:1.在配置文件中配置环境变量 spring.redis.host=${REDIS_HOST:127.0.0.1}spring.redis.port=6379spr 阅读全文
posted @ 2020-01-02 16:41 panchanggui 阅读(11123) 评论(0) 推荐(0) 编辑