All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.server.springboot.springcloud.consul.src.consul.yml.mustache Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
# This configuration is intended for development purpose, it's **your** responsibility to harden it for production
services:
  consul:
    image: {{dockerImageConsul}}
    # If you want to expose these ports outside your dev PC,
    # remove the "127.0.0.1:" prefix
    ports:
      - '127.0.0.1:8300:8300'
      - '127.0.0.1:8500:8500'
      - '127.0.0.1:8600:8600'
    command: consul agent -dev -ui -client 0.0.0.0 -log-level=INFO

  consul-config-loader:
    image: {{dockerImageConfigLoader}}
    volumes:
      - ./central-server-config:/config
    environment:
      - INIT_SLEEP_SECONDS=5
      - CONSUL_URL=consul
      - CONSUL_PORT=8500
      # Uncomment to load configuration into Consul from a Git repository
      # as configured in central-server-config/git2consul.json
      # Also set SPRING_CLOUD_CONSUL_CONFIG_FORMAT=files on your apps
      # - CONFIG_MODE=git




© 2015 - 2024 Weber Informatics LLC | Privacy Policy