From 74d8870ffe464aa6622702c2394016c7ea3587a8 Mon Sep 17 00:00:00 2001 From: Robert Dick Date: Fri, 8 May 2026 07:37:51 -0400 Subject: [PATCH] slight docker compose modification for easier testing --- flowise/exposedui/README.md | 5 +++-- flowise/exposedui/docker-compose.yml | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/flowise/exposedui/README.md b/flowise/exposedui/README.md index c5483609..34bf0428 100644 --- a/flowise/exposedui/README.md +++ b/flowise/exposedui/README.md @@ -5,9 +5,10 @@ This directory contains the deployment config for Flowise instances with and wit ## Deployment ```sh -docker-compose up vuln -docker-compose up safe +docker-compose up ``` +The vulnerable service will be exposed at port `8081` and the safe service will be exposed at port `8082`. + ## Vulnerable Service The `vuln` service runs Flowise v1.6.0 without authentication. diff --git a/flowise/exposedui/docker-compose.yml b/flowise/exposedui/docker-compose.yml index 5b63e6e7..544f9b7c 100644 --- a/flowise/exposedui/docker-compose.yml +++ b/flowise/exposedui/docker-compose.yml @@ -7,6 +7,8 @@ services: volumes: - .flowise_vuln:/root/.flowise entrypoint: "flowise start" + ports: + - '8081:3000' safe: image: flowiseai/flowise:1.6.1 @@ -16,3 +18,5 @@ services: volumes: - .flowise_safe:/root/.flowise entrypoint: "flowise start" + ports: + - '8082:3000'