Codebase list golang-github-go-kit-kit / d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.6.0 docker-compose-integration.yml
d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.6.0

Tree @d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.6.0 (Download .tar.gz)

docker-compose-integration.yml @d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.6.0raw · history · blame

version: '2'
services:
  etcd:
    image: quay.io/coreos/etcd
    ports:
      - "2379:2379"
    command: /usr/local/bin/etcd -advertise-client-urls http://0.0.0.0:2379,http://0.0.0.0:4001 -listen-client-urls "http://0.0.0.0:2379,http://0.0.0.0:4001"
  consul:
    image: progrium/consul
    ports:
      - "8500:8500"
    command: -server -bootstrap
  zk:
    image: zookeeper
    ports:
      - "2181:2181"
  eureka:
    image: springcloud/eureka
    environment:
      eureka.server.responseCacheUpdateIntervalMs: 1000
    ports:
      - "8761:8761"