Skip to content

Python SDK README: docker command uses stale 2-year-old standalone image on wrong port #22

@nthmost-orkes

Description

@nthmost-orkes

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:

  1. conductoross/conductor-standalone:3.15.0 is the stale 2-year-old image (see getting-started#7) — current is conductoross/conductor:3.22.3
  2. 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

Metadata

Metadata

Assignees

No one assigned

    Labels

    area: sdkAny language SDKcriticalSeriously impacts zero-to-one onboardingfix: docs-onlyFix is a documentation/copy change, no code neededsdk: python

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions