diff --git a/CHANGELOG.md b/CHANGELOG.md index 3079090..5b7f763 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 4.1.0 (IN PROGRESS) + +### Features / Enhancements + +- Updated Dockerfile to separate categories (#101) +- Updated background and image (#102) +- Updated Dockerfile description (#103) + ## 4.0.0 (2024-07-07) ### Features / Enhancements diff --git a/Dockerfile b/Dockerfile index dc42edb..84776db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,9 +15,12 @@ ENV GF_AUTH_BASIC_ENABLED=false ## Disable Sanitize ENV GF_PANELS_DISABLE_SANITIZE_HTML=true -# Updates Check +## Check for Updates ENV GF_ANALYTICS_CHECK_FOR_UPDATES=false +## Scenes-engine Dashboards +#ENV GF_FEATURE_TOGGLES_ENABLE=dashboardScene + ## Set Home Dashboard ENV GF_DASHBOARDS_DEFAULT_HOME_DASHBOARD_PATH=/etc/grafana/provisioning/dashboards/business.json @@ -68,7 +71,7 @@ COPY img/background.svg /usr/share/grafana/public/img/g8_login_light.svg RUN sed -i 's|\[\[.AppTitle\]\]|Business Suite|g' /usr/share/grafana/public/views/index.html RUN sed -i 's|Loading Grafana|Loading Business Suite|g' /usr/share/grafana/public/views/index.html -## Update Help menu +## Update Mega and Help menu RUN sed -i "s|\[\[.NavTree\]\],|nav,|g; \ s|window.grafanaBootData = {| \ let nav = [[.NavTree]]; \ diff --git a/docker-compose.yml b/docker-compose.yml index a7a7427..eaee9af 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,6 @@ version: '3.4' services: grafana: - container_name: grafana build: context: ./ dockerfile: Dockerfile @@ -15,15 +14,3 @@ services: volumes: - ./dist:/var/lib/grafana/plugins/volkovlabs-app - ./provisioning:/etc/grafana/provisioning - - nginx: - container_name: nginx - build: ./nginx - restart: always - environment: - - GRAFANA_HOST=grafana - ports: - - 80:80/tcp - - 443:443/tcp - depends_on: - - grafana