Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Dependencies): Update prom/prometheus Docker tag to v2.55.1 #267

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/portal_prometheus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM prom/prometheus:v2.48.0
FROM prom/prometheus:v2.55.1
ADD prometheus.yml /etc/prometheus
2 changes: 1 addition & 1 deletion dev/site_prometheus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM prom/prometheus:v2.48.0
FROM prom/prometheus:v2.55.1
ADD prometheus.yml /etc/prometheus
2 changes: 1 addition & 1 deletion docker-compose.portal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ x-logging:
services:
# global prometheus instance scraping data from the local instances
portal_prometheus:
image: "prom/prometheus:v2.48.0"
image: "prom/prometheus:v2.55.1"
container_name: portal_prometheus
networks:
portal:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
- "${EXPORTER_PORT}:8080"
# prometheus instance responsible for monitoring
site_prometheus:
image: "prom/prometheus:v2.48.0"
image: "prom/prometheus:v2.55.1"
# use self build Dockerfile as alternative
# build: prod/site_prometheus
container_name: project_usage_prometheus
Expand Down
2 changes: 1 addition & 1 deletion prod/portal_prometheus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM prom/prometheus:v2.48.0
FROM prom/prometheus:v2.55.1
ADD prometheus.yml /etc/prometheus
2 changes: 1 addition & 1 deletion prod/site_prometheus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM prom/prometheus:v2.48.0
FROM prom/prometheus:v2.55.1
# relative to compose file
ADD prometheus.yml /etc/prometheus/prometheus.yml

Expand Down