-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
51 lines (45 loc) · 1.03 KB
/
docker-compose.yaml
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
43
44
45
46
47
48
49
50
51
version: '3.1'
services:
grafana:
image: grafana/grafana:9.3.8
restart: always
ports:
- 3000:3000
environment:
GF_DEFAULT_APP_MODE: "development"
GF_DATAPROXY_LOGGING: "true"
GF_LOG_LEVEL: "debug"
volumes:
- grafana-data:/var/lib/grafana
- ./:/var/lib/grafana/plugins/nedimar-youbora-datasource
js-builder:
build:
context: .
dockerfile: Dockerfile.node
restart: always
volumes:
- ./dist/:/tmp/grafana/dist/
entrypoint: /bin/sh -c
command: yarn build
go-builder:
build:
context: .
dockerfile: Dockerfile.golang
restart: always
volumes:
- ./dist/:/tmp/grafana/dist/
entrypoint: /bin/sh -c
command: mage build:linux
console:
image: grafana/grafana:9.3.8
restart: always
ports:
- 3000:3000
volumes:
- ./:/var/lib/grafana/plugins/nedimar-youbora-datasource
environment:
GF_DEFAULT_APP_MODE: "development"
entrypoint: /bin/sh -c
command: /bin/bash
volumes:
grafana-data: