-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (36 loc) · 875 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (36 loc) · 875 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
30
31
32
33
34
35
36
37
38
39
40
41
42
version: '3'
services:
codespeed:
build:
context: ./codespeed
ports:
- "8000:8000"
environment:
REPOSITORY_BASE_PATH: "/repos"
DATABASE_URL: "${DATABASE_URL}"
volumes:
- ./codespeed:/code
sqlmigrate:
image: docker.io/library/ruby:2.5
volumes:
- .:/data
grafana:
image: docker.io/grafana/grafana
ports:
- "3000:3000"
environment:
GF_SECURITY_ADMIN_USER: "${GRAFANA_USER}"
GF_SECURITY_ADMIN_PASSWORD: "${GRAFANA_PASSWORD}"
GF_AUTH_ANONYMOUS_ENABLED: "true"
GF_AUTH_ANONYMOUS_ORG_NAME: "Chaincode"
volumes:
- grafana-data:/var/lib/grafana
# grafcli:
# build:
# context: ./grafana_management
# volumes:
# - ./grafana_management:/home/root
# environment:
# GRAFANA_API_TOKEN: "${GRAFANA_API_TOKEN}"
volumes:
grafana-data: