Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: deNBI/project_usage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6631de14125cfb9bbd4b8d73b8ecf52cf887a01e
Choose a base ref
..
head repository: deNBI/project_usage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6d470f8fb2a17a4883c547ed642aa757e1e239fb
Choose a head ref
Showing with 3 additions and 3 deletions.
  1. +1 −1 docker-compose.portal.yml
  2. +1 −1 docker-compose.site.yml
  3. +1 −1 shared/grafana/Dockerfile
2 changes: 1 addition & 1 deletion docker-compose.portal.yml
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ services:
PROMSCALE_DB_URI: postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}?sslmode=allow

portal_grafana:
image: "grafana/grafana:9.5.19"
image: "grafana/grafana:9.5.20"
container_name: portal_grafana
depends_on:
- portal_prometheus
2 changes: 1 addition & 1 deletion docker-compose.site.yml
Original file line number Diff line number Diff line change
@@ -71,7 +71,7 @@ services:
environment:
- PORTAL_AUTH_TOKEN
site_grafana:
image: "grafana/grafana:9.5.19"
image: "grafana/grafana:9.5.20"
# use self build Dockerfile as alternative
# build: prod/grafana
container_name: project_usage_grafana
2 changes: 1 addition & 1 deletion shared/grafana/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM grafana/grafana:9.5.19
FROM grafana/grafana:9.5.20
COPY provisioning/* /etc/grafana/provisioning/

EXPOSE 3000