diff --git a/apache/flink/exposed-ui/README.md b/apache/flink/exposed-ui/README.md new file mode 100644 index 00000000..b889418c --- /dev/null +++ b/apache/flink/exposed-ui/README.md @@ -0,0 +1,5 @@ +# start vulnerable version +```bash +docker compose up --no-build +``` +Open http://127.0.0.1:8083/#/submit \ No newline at end of file diff --git a/apache/flink/exposed-ui/docker-compose.yml b/apache/flink/exposed-ui/docker-compose.yml new file mode 100644 index 00000000..d6779fdf --- /dev/null +++ b/apache/flink/exposed-ui/docker-compose.yml @@ -0,0 +1,23 @@ +services: + flink-dev: + container_name: flink + image: hibuz/flink-dev + build: . + ports: + - 9870:9870 + - 8088:8088 + - 19888:19888 + - 16010:16010 + - 4040:4040 + - 8080:8080 + - 8081:8081 + - 18080:18080 + - 9083:9083 + - 10002:10002 + - 8083:8083 + command: hive + volumes: + - flink-vol:/tmp + +volumes: + flink-vol: {}