File: docker-compose-integration.yml

package info (click to toggle)
golang-github-go-kit-kit 0.13.0-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,784 kB
  • sloc: sh: 22; makefile: 11
file content (26 lines) | stat: -rw-r--r-- 503 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
version: '2'
services:
  etcd:
    image: gcr.io/etcd-development/etcd:v3.5.0
    ports:
      - "2379:2379"
    environment:
      ETCD_LISTEN_CLIENT_URLS: http://0.0.0.0:2379
      ETCD_ADVERTISE_CLIENT_URLS: http://0.0.0.0:2379

  consul:
    image: consul:1.7
    ports:
      - "8500:8500"

  zk:
    image: zookeeper:3.5
    ports:
      - "2181:2181"

  eureka:
    image: springcloud/eureka
    environment:
      eureka.server.responseCacheUpdateIntervalMs: 1000
    ports:
      - "8761:8761"