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'