Unable to configure connectors via Camunda Console due to CORS errors

I am using the official “docker-compose-full.yaml” to setup a local Camunda 8 installation. I didn’t change any parameter.

When trying to configure the connectors via Camunda Console, I receive CORS errors in the browser’s network tab.

Applications like Identity, Tasklist, Operate, WebModeler and Optimize are working as expected

Token Content:

{
  "exp": 1766065695,
  "iat": 1766065395,
  "auth_time": 1766064914,
  "jti": "onrtrt:8f28ff73-d593-7a98-4cbb-4c23865fb53d",
  "iss": "http://localhost:18080/auth/realms/camunda-platform",
  "aud": [
    "console",
    "console-api",
    "web-modeler-api",
    "orchestration-api",
    "optimize-api",
    "camunda-identity-resource-server",
    "account"
  ],
  "sub": "1e9968a6-03b7-4ac6-843f-58ff77420c28",
  "typ": "Bearer",
  "azp": "console",
  "sid": "c794e109-dc35-4e3c-931a-1de5673dcddd",
  "acr": "1",
  "allowed-origins": [
    "http://localhost:8087"
  ],
  "realm_access": {
    "roles": [
      "Orchestration",
      "Web Modeler Admin",
      "Default user role",
      "Console",
      "Optimize",
      "Web Modeler",
      "ManagementIdentity"
    ]
  },
  "resource_access": {
    "console-api": {
      "roles": [
        "write:*"
      ]
    },
    "web-modeler-api": {
      "roles": [
        "write:*",
        "admin:*"
      ]
    },
    "orchestration-api": {
      "roles": [
        "read:*",
        "write:*"
      ]
    },
    "optimize-api": {
      "roles": [
        "write:*"
      ]
    },
    "camunda-identity-resource-server": {
      "roles": [
        "read:users",
        "read",
        "write"
      ]
    },
    "account": {
      "roles": [
        "manage-account",
        "manage-account-links",
        "view-profile"
      ]
    }
  },
  "scope": "openid email profile",
  "email_verified": false,
  "permissions": {
    "console-api": [
      "write:*"
    ],
    "web-modeler-api": [
      "write:*",
      "admin:*"
    ],
    "orchestration-api": [
      "read:*",
      "write:*"
    ],
    "optimize-api": [
      "write:*"
    ],
    "camunda-identity-resource-server": [
      "read:users",
      "read",
      "write"
    ],
    "account": [
      "manage-account",
      "manage-account-links",
      "view-profile"
    ]
  },
  "name": "Demo User",
  "preferred_username": "demo",
  "given_name": "Demo",
  "family_name": "User",
  "email": "demo@example.org"
}

I haven’t seen any specific setting in the documentation, that could resolve the CORS error.

Should this work in a local setup? If yes, how can I resolve this issue ?

Would you please share the Camunda version and link where you downloaded the docker compose file.

Camunda Version is 8.8

The Compose file was downloaded from this page:

Direct link:

https://github.com/camunda/camunda-distributions/releases/download/docker-compose-8.8/docker-compose-8.8.zip

The CORS issue is gone with the latest docker-compose files.

But I had to adapt the connectors addresss in the console’s application.yaml like described in this issue: Camunda 8.8 Connector Management: An error occured · Issue #323 · camunda/camunda-distributions · GitHub)