如何通过docker从领事值设置容器参数?

时间:2019-07-12 11:02:28

标签: docker docker-compose consul

我只有几个简单的Java应用程序,我希望他们使用consul进行运行时配置。我不明白应该在此组合中使用的方法:docker + consul + apps。

我设法用所需的容器自定义了一个适当的docker-compose.yml文件:领事,jetty1,jetty2,jetty3。每个码头都会在建造中获得战争应用。当我泊坞窗组成我的堆栈时,我启动了正确的应用程序。 但是我不明白我应该怎么做才能使我的应用程序从领事服务中读取领事配置。

我已经制作了这样的docker-compose.yml文件:

version: '2'

services:
  consuldns:
    build: ./consul
    command: 'agent -server -bootstrap-expect=1 -ui -client=0.0.0.0 -node=consuldns -log-level=debug'
    ports:
      - '8300:8300'
      - '8301:8301'
      - '8302:8302'
      - '8400:8400'
      - '8500:8500'
      - '8600:53/udp'
    container_name: 'consuldns' 
  jettyok1:    
    build: ./jetty
    ports:
      - "8081:8080"     
    container_name: jettyok1  
    depends_on: 
      - consuldns
  jettyok2:    
    build: ./jetty
    ports:
      - "8082:8080"     
    container_name: jettyok2    
    depends_on: 
      - consuldns
  jettyok3:    
    build: ./jetty
    ports:
      - "8083:8080"     
    container_name: jettyok3
    depends_on: 
      - consuldns

我在docker-compose.yml文件附近有两个文件夹: -领事:  Dockerfile(从官方仓库复制)

FROM consul:latest

ENV CONSUL_TEMPLATE_VERSION 0.18.1

ADD https://releases.hashicorp.com/consul-template/${CONSUL_TEMPLATE_VERSION}/consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.zip /

RUN unzip consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.zip && \
    mv consul-template /usr/local/bin/consul-template &&\
    rm -rf /consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.zip && \
    mkdir -p /etc/consul-template/config.d/templates && \
    apk add --no-cache curl

RUN apk update && apk add --no-cache jq

RUN mkdir /etc/consul.d
RUN echo '{"service": {"name": "my_java_application", "tags": ["java"], "port": 8080}}' > /etc/consul.d/java.json
#RUN consul agent -data-dir /consul/data -config-dir /etc/consul.d

CMD ["agent", "-dev", "-client", "0.0.0.0"]
  • 码头: Dockerfile(手工制作)
FROM jetty:latest

ENV DEFAULT_SYSTEM_MESSAGE='dockerfile default message'

COPY \always-healthy.war /var/lib/jetty/webapps/

always-healthy.war是一个简单的Spring-boot Web应用程序,仅支持GET方法:

package org.bajiepka.demo.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.core.env.Environment;

@RestController
public class MessageController {

    @Autowired
    private Environment environment;

    @GetMapping("/message")
    public String getDefaultMessage(){
        return String.format("Current value: %s", environment.getProperty("DEFAULT_SYSTEM_MESSAGE"));
    }
}

请指出我该怎么做,以使我的始终健康的应用程序从领事服务读取值,以便我可以管理任何码头实例或始终健康的应用程序的环境参数DEFAULT_SYSTEM_MESSAGE

1 个答案:

答案 0 :(得分:0)

如果您使用的是Spring cloud,则可以使用Spring cloud consul config来使应用程序在启动时从consul加载配置。

请参阅示例和示例herehere

如果您不使用Spring Cloud,则需要做更多工作,必须使用领事的rest客户端来获取配置。