Problem
The Python SDK README tells users to start a local server with:
```shell
docker run --init -p 8080:8080 -p 5000:5000 conductoross/conductor-standalone:3.15.0
```
Then: "View the workflow execution in the Conductor UI at http://localhost:5000."
Two problems:
conductoross/conductor-standalone:3.15.0 is the stale 2-year-old image (see getting-started#7) — current is conductoross/conductor:3.22.3
- The UI port is
5000 — this was the old port. Current image serves the UI on port 8080
A user following these instructions will pull an outdated server and then not find the UI where they're told to look.
Fix
Update to:
```shell
docker run -p 8080:8080 conductoross/conductor:latest
```
And update the UI URL to http://localhost:8080.
(Or better: point to conductor server start via the CLI.)
Affects
conductor-oss/python-sdk README
Problem
The Python SDK README tells users to start a local server with:
```shell
docker run --init -p 8080:8080 -p 5000:5000 conductoross/conductor-standalone:3.15.0
```
Then: "View the workflow execution in the Conductor UI at http://localhost:5000."
Two problems:
conductoross/conductor-standalone:3.15.0is the stale 2-year-old image (see getting-started#7) — current isconductoross/conductor:3.22.35000— this was the old port. Current image serves the UI on port8080A user following these instructions will pull an outdated server and then not find the UI where they're told to look.
Fix
Update to:
```shell
docker run -p 8080:8080 conductoross/conductor:latest
```
And update the UI URL to
http://localhost:8080.(Or better: point to
conductor server startvia the CLI.)Affects
conductor-oss/python-sdkREADME