You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
730 B
27 lines
730 B
7 months ago
|
version: '3.0'
|
||
|
|
||
|
services:
|
||
|
grafana:
|
||
|
user: root
|
||
|
container_name: 'corpglory-chartwerk-panel'
|
||
|
|
||
|
platform: 'linux/amd64'
|
||
|
build:
|
||
|
context: ./.config
|
||
|
args:
|
||
|
grafana_image: ${GRAFANA_IMAGE:-grafana-enterprise}
|
||
|
grafana_version: ${GRAFANA_VERSION:-10.3.3}
|
||
|
ports:
|
||
|
- 3000:3000/tcp
|
||
|
volumes:
|
||
|
- ./dist:/var/lib/grafana/plugins/corpglory-chartwerk-panel
|
||
|
- ./provisioning:/etc/grafana/provisioning
|
||
|
- .:/root/corpglory-chartwerk-panel
|
||
|
|
||
|
environment:
|
||
|
NODE_ENV: development
|
||
|
GF_LOG_FILTERS: plugin.corpglory-chartwerk-panel:debug
|
||
|
GF_LOG_LEVEL: debug
|
||
|
GF_DATAPROXY_LOGGING: 1
|
||
|
GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS: corpglory-chartwerk-panel
|