Skip to content
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
5 changes: 3 additions & 2 deletions flowise/exposedui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 4 additions & 0 deletions flowise/exposedui/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ services:
volumes:
- .flowise_vuln:/root/.flowise
entrypoint: "flowise start"
ports:
- '8081:3000'

safe:
image: flowiseai/flowise:1.6.1
Expand All @@ -16,3 +18,5 @@ services:
volumes:
- .flowise_safe:/root/.flowise
entrypoint: "flowise start"
ports:
- '8082:3000'