Browse Source

comment out docker-compose

master
Richard Hillmann 9 years ago
parent
commit
f971847235
  1. 84
      docker-compose.yml

84
docker-compose.yml

@ -10,45 +10,45 @@ exporter:
ports: ports:
- 8081:8081 - 8081:8081
# Just for full stack testing # Just for full stack testing
app_2: #app_2:
image: beorn7/syseng-challenge # image: beorn7/syseng-challenge
exporter_2: #exporter_2:
build: ./ # build: ./
command: -endpoint=http://app:8080/stats -listen :8081 --timeout 200 --environment=production # command: -endpoint=http://app:8080/stats -listen :8081 --timeout 200 --environment=production
links: # links:
- app_2:app # - app_2:app
app_3: #app_3:
image: beorn7/syseng-challenge # image: beorn7/syseng-challenge
exporter_3: #exporter_3:
build: ./ # build: ./
command: -endpoint=http://app:8080/stats -listen :8081 --timeout 200 --environment=production # command: -endpoint=http://app:8080/stats -listen :8081 --timeout 200 --environment=production
links: # links:
- app_3:app # - app_3:app
app_4: #app_4:
image: beorn7/syseng-challenge # image: beorn7/syseng-challenge
exporter_4: #exporter_4:
build: ./ # build: ./
command: -endpoint=http://app:8080/stats -listen :8081 --timeout 200 --environment=development # command: -endpoint=http://app:8080/stats -listen :8081 --timeout 200 --environment=development
links: # links:
- app_4:app # - app_4:app
prometheus: #prometheus:
# There is an issue with docker links and resolving entries in /etc/hosts, open PR: https://github.com/prometheus/prometheus/pull/2502 # # There is an issue with docker links and resolving entries in /etc/hosts, open PR: https://github.com/prometheus/prometheus/pull/2502
# image: prom/prometheus:latest # # image: prom/prometheus:latest
# use own build docker image...: # # use own build docker image...:
image: prom # image: prom
links: # links:
- exporter # - exporter
- exporter_2 # - exporter_2
- exporter_3 # - exporter_3
- exporter_4 # - exporter_4
volumes: # volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml # - ./prometheus.yml:/etc/prometheus/prometheus.yml
ports: # ports:
- 8082:9090 # - 8082:9090
grafana: #grafana:
image: grafana/grafana:latest # image: grafana/grafana:latest
command: -config.file /etc/prometheus.yml # command: -config.file /etc/prometheus.yml
links: # links:
- prometheus # - prometheus
ports: # ports:
- 8083:3000 # - 8083:3000

Loading…
Cancel
Save