Skip to content

Commit 1f6523b

Browse files
committed
Initial Revision
0 parents  commit 1f6523b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+5202
-0
lines changed

README.adoc

+2,364
Large diffs are not rendered by default.

docker/docker-compose.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: '3'
2+
services:
3+
grafana:
4+
image: grafana/grafana:5.4.2
5+
ports:
6+
- "3000:3000"
7+
depends_on:
8+
- prom
9+
10+
prom:
11+
image: prom/prometheus:v2.6.0
12+
volumes:
13+
- ./prometheus.yml:/etc/prometheus/prometheus.yml
14+
command: "--config.file=/etc/prometheus/prometheus.yml --storage.tsdb.path=/prometheus"
15+
ports:
16+
- 9090:9090
17+
depends_on:
18+
- student
19+
- frontend
20+
21+
student:
22+
image: acme/student:1.0
23+
ports:
24+
- "8081:8081"
25+
healthcheck:
26+
test: curl --fail -s http://localhost:8081/health/live || exit 1
27+
timeout: 5s
28+
interval: 1s
29+
retries: 0
30+
31+
32+
frontend:
33+
image: acme/frontend:1.0
34+
ports:
35+
- "8080:8080"

0 commit comments

Comments
 (0)