Latest UI, Grafana and Prometheus images (#6992)

## What changed?
<!-- Describe what has changed in this PR -->

Using the latest `grafana`, `temporalio/ui` and `prometheus` images for
our local dev setup.

## Why?
<!-- Tell your future self why have you made these changes -->

The current versions are 6+ months old.

## How did you test it?
<!-- How have you verified this change? Tested locally? Added a unit
test? Checked in staging env? -->

Started locally.

## Potential risks
<!-- Assuming the worst case, what can be broken when deploying this
change to production? -->

## Documentation
<!-- Have you made sure this change doesn't falsify anything currently
stated in `docs/`? If significant
new behavior is added, have you described that in `docs/`? -->

## Is hotfix candidate?
<!-- Is this PR a hotfix candidate or does it require a notification to
be sent to the broader community? (Yes/No) -->
This commit is contained in:
Stephan Behnke
2024-12-18 11:13:45 -08:00
committed by GitHub
parent 72b52b342d
commit 85f22ade1b
2 changed files with 5 additions and 5 deletions

View File

@@ -3,12 +3,12 @@
# docker-compose -f docker-compose.yml -f docker-compose.linux.yml -f docker-compose.cdc.yml -f docker-compose.cdc.linux.yml up
services:
temporal-ui-standby:
image: temporalio/ui:2.21.3
image: temporalio/ui:latest
container_name: temporal-dev-ui-standby
environment:
- TEMPORAL_UI_PORT=8081
temporal-ui-other:
image: temporalio/ui:2.21.3
image: temporalio/ui:latest
container_name: temporal-dev-ui-other
environment:
- TEMPORAL_UI_PORT=8082

View File

@@ -59,7 +59,7 @@ services:
- temporal-dev-network
prometheus:
# Use http://localhost:9090/ to access Prometheus.
image: prom/prometheus:v2.30.0
image: prom/prometheus:latest
container_name: temporal-dev-prometheus
command:
- "--log.level=error"
@@ -69,14 +69,14 @@ services:
- "--web.console.templates=/usr/share/prometheus/consoles"
grafana:
# Use http://localhost:3000/ to access Grafana (admin/admin).
image: grafana/grafana:9.1.4
image: grafana/grafana:latest
container_name: temporal-dev-grafana
depends_on:
- prometheus
volumes:
- ./grafana/provisioning/:/etc/grafana/provisioning/
temporal-ui:
image: temporalio/ui:2.26.2
image: temporalio/ui:latest
container_name: temporal-dev-ui
networks: