File tree Expand file tree Collapse file tree
docs/security/docker/scans
application/command_handlers/show/info
infrastructure/templating/docker_compose/template
wrappers/docker_compose/context Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ This directory contains historical security scan results for Docker images used
1111| ` torrust/tracker-ssh-server ` | 3.23.3 | 0 | 0 | ✅ Remediated (vuln scan) | Apr 8, 2026 | [ View] ( torrust-ssh-server.md ) |
1212| ` torrust/tracker-provisioned-instance ` | 24.04 | 0 | 0 | ✅ Remediated (vuln scan) | Apr 8, 2026 | [ View] ( torrust-tracker-provisioned-instance.md ) |
1313| ` caddy ` | 2.10.2 | 14 | 4 | ⚠️ Partial remediation | Apr 8, 2026 | [ View] ( caddy.md ) |
14- | ` prom/prometheus ` | v3.5.1 | 6 | 4 | ⚠️ Partial remediation | Apr 8 , 2026 | [ View] ( prometheus.md ) |
14+ | ` prom/prometheus ` | v3.11.2 | 4 | 0 | ✅ Remediated | Apr 14 , 2026 | [ View] ( prometheus.md ) |
1515| ` grafana/grafana ` | 12.4.2 | 4 | 0 | ⚠️ Partial remediation | Apr 8, 2026 | [ View] ( grafana.md ) |
1616| ` mysql ` | 8.4 | 7 | 1 | ⚠️ Monitored | Apr 8, 2026 | [ View] ( mysql.md ) |
1717
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ pub struct DockerImagesInfo {
1212 /// `MySQL` Docker image reference (e.g. `mysql:8.4`), present when `MySQL` is configured
1313 pub mysql : Option < String > ,
1414
15- /// Prometheus Docker image reference (e.g. `prom/prometheus:v3.5.1 `), present when configured
15+ /// Prometheus Docker image reference (e.g. `prom/prometheus:v3.11.2 `), present when configured
1616 pub prometheus : Option < String > ,
1717
1818 /// Grafana Docker image reference (e.g. `grafana/grafana:12.4.2`), present when configured
Original file line number Diff line number Diff line change @@ -407,8 +407,8 @@ mod tests {
407407 "Rendered output should contain prometheus service"
408408 ) ;
409409 assert ! (
410- rendered_content. contains( "image: prom/prometheus:v3.5.1 " ) ,
411- "Should use Prometheus v3.5.0 image"
410+ rendered_content. contains( "image: prom/prometheus:v3.11.2 " ) ,
411+ "Should use Prometheus v3.11.2 image"
412412 ) ;
413413 assert ! (
414414 rendered_content. contains( "container_name: prometheus" ) ,
@@ -466,7 +466,7 @@ mod tests {
466466
467467 // Verify Prometheus service is NOT present
468468 assert ! (
469- !rendered_content. contains( "image: prom/prometheus:v3.5.1 " ) ,
469+ !rendered_content. contains( "image: prom/prometheus:v3.11.2 " ) ,
470470 "Should not contain Prometheus service when config absent"
471471 ) ;
472472 assert ! (
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ use super::service_topology::ServiceTopology;
1818/// Uses `ServiceTopology` to share the common topology structure with other services.
1919#[ derive( Serialize , Debug , Clone ) ]
2020pub struct PrometheusServiceContext {
21- /// Docker image reference (e.g. `prom/prometheus:v3.5.1 `)
21+ /// Docker image reference (e.g. `prom/prometheus:v3.11.2 `)
2222 pub image : String ,
2323
2424 /// Service topology (ports and networks)
You can’t perform that action at this time.
0 commit comments