使用Docker分分钟启动常用应用(2)

  3. 在GitHub上准备配置文件:https://github.com/ErikXu/.NetCore-Spring-Clould/tree/master/Configs

  4. 准备启动资源文件application.yml:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

 

info:

  component: config service

 

server:

  port: 8888

 

spring:

  application:

    name: git-config

  profiles:

    active: dev

  cloud:

    config:

      server:

        git:

          uri: https://github.com/ErikXu/.NetCore-Spring-Clould

          searchPaths: Configs

 

  

  5. 执行指令启动Config Server,注:该指令前无空格

  docker run --name configsvr -it -d -p 8888:8888 \
  -v /home/erikxu/config/application.yml:/config/application.yml \
  hyness/spring-cloud-config-server

  

  6. 检查结果

  

使用Docker分分钟启动常用应用

最后

  如果大家有什么问题,或者需要添加其他程序的Docker启动方式,欢迎一起沟通交流。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/abe87ef65529b7d383f763a27e830138.html