-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
29 lines (27 loc) · 779 Bytes
/
docker-compose.yaml
File metadata and controls
29 lines (27 loc) · 779 Bytes
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
27
28
29
# Copyright 2019-present Kuei-chun Chen. All rights reserved.
# docker-compose.yaml
#
# Usage:
# docker-compose up # uses ./diagnostic.data/
# FTDC_DATA=./obfuscated docker-compose up # uses ./obfuscated/
services:
grafana-ftdc:
image: simagix/grafana-ftdc:latest
hostname: grafana-ftdc
ports:
- "3030:3000"
environment:
GF_PLUGINS_PREINSTALL: simpod-json-datasource
GF_LOG_LEVEL: error
GF_AUTH_ANONYMOUS_ENABLED: "true"
GF_AUTH_ANONYMOUS_ORG_ROLE: Admin
depends_on:
- ftdc
ftdc:
image: simagix/ftdc:latest
hostname: ftdc
ports:
- "5408:5408"
volumes:
- ${FTDC_DATA:-./diagnostic.data}:/diagnostic.data
command: /mftdc -server /diagnostic.data