From d1a07320dc97be760543668c4ee134c902775f6e Mon Sep 17 00:00:00 2001 From: Robert Dick Date: Wed, 22 Apr 2026 08:12:19 -0400 Subject: [PATCH] added ports 8081 and 8082 to testbed docker compose --- mlflow/CVE-2024-1483/docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mlflow/CVE-2024-1483/docker-compose.yml b/mlflow/CVE-2024-1483/docker-compose.yml index a3e9869c..974b33f3 100644 --- a/mlflow/CVE-2024-1483/docker-compose.yml +++ b/mlflow/CVE-2024-1483/docker-compose.yml @@ -2,6 +2,10 @@ services: vuln: image: ghcr.io/mlflow/mlflow:v2.9.1 command: ["mlflow", "server", "--host", "0.0.0.0", "--port", "5000"] + ports: + - 8081:5000 safe: image: ghcr.io/mlflow/mlflow:v2.12.1 command: ["mlflow", "server", "--host", "0.0.0.0", "--port", "5000"] + ports: + - 8082:5000