Skip to content

Commit de71f53

Browse files
authored
fix: unify default REST port to 8080 in docker-compose 8.9 (#315)
1 parent 0f64f41 commit de71f53

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

docker-compose/versions/camunda-8.9/.console/application.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ camunda:
2727
version: "8.8.0"
2828
urls:
2929
grpc: "grpc://localhost:26500"
30-
http: "http://localhost:8088"
30+
http: "http://localhost:8080"
3131
readiness: "http://orchestration:9600/health"
3232
metrics: "http://orchestration:9600/prometheus"
3333
- name: "Operate"
3434
id: "operate"
3535
# renovate: datasource=docker depName=camunda/operate
3636
version: "8.8.0"
37-
url: "http://localhost:8088/operate"
37+
url: "http://localhost:8080/operate"
3838
readiness: "http://orchestration:9600/actuator/health/readiness"
3939
metrics: "http://orchestration:9600/actuator/prometheus"
4040
- name: "Tasklist"
4141
id: "tasklist"
4242
# renovate: datasource=docker depName=camunda/tasklist
4343
version: "8.8.0"
44-
url: "http://localhost:8088/tasklist"
44+
url: "http://localhost:8080/tasklist"
4545
readiness: "http://orchestration:9600/actuator/health/readiness"
4646
metrics: "http://orchestration:9600/actuator/prometheus"
4747
- name: "Optimize"

docker-compose/versions/camunda-8.9/.identity/application.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ identity:
6262
id: orchestration
6363
type: confidential
6464
secret: ${VALUES_KEYCLOAK_INIT_ORCHESTRATION_SECRET:secret}
65-
root-url: "http://localhost:8088"
65+
root-url: "http://localhost:8080"
6666
redirect-uris:
6767
- "/sso-callback"
6868
apis:

docker-compose/versions/camunda-8.9/.orchestration/application.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ camunda:
116116
operate:
117117
persistentSessionsEnabled: true
118118
identity:
119-
redirectRootUrl: "http://localhost:8088/operate"
119+
redirectRootUrl: "http://localhost:8080/operate"
120120

121121
# ELS instance to store Operate data
122122
elasticsearch:
@@ -151,7 +151,7 @@ camunda:
151151
#
152152
tasklist:
153153
identity:
154-
redirectRootUrl: "http://localhost:8088/tasklist"
154+
redirectRootUrl: "http://localhost:8080/tasklist"
155155

156156
# Set Tasklist username and password.
157157
# If user with <username> does not exists it will be created.

docker-compose/versions/camunda-8.9/docker-compose-full.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
ports:
1818
- "26500:26500"
1919
- "9600:9600"
20-
- "8088:8080"
20+
- "8080:8080"
2121
environment: # https://docs.camunda.io/docs/self-managed/zeebe-deployment/configuration/environment-variables/
2222
# OIDC Authentication - Environment-specific URLs and secrets
2323
CAMUNDA_SECURITY_AUTHENTICATION_OIDC_CLIENTID: ${ORCHESTRATION_CLIENT_ID}
@@ -28,7 +28,7 @@ services:
2828
CAMUNDA_SECURITY_AUTHENTICATION_OIDC_AUTHORIZATIONURI: http://${HOST}:18080/auth/realms/camunda-platform/protocol/openid-connect/auth
2929
CAMUNDA_SECURITY_AUTHENTICATION_OIDC_TOKENURI: http://${KEYCLOAK_HOST}:18080/auth/realms/camunda-platform/protocol/openid-connect/token
3030
CAMUNDA_SECURITY_AUTHENTICATION_OIDC_JWKSETURI: http://${KEYCLOAK_HOST}:18080/auth/realms/camunda-platform/protocol/openid-connect/certs
31-
CAMUNDA_SECURITY_AUTHENTICATION_OIDC_REDIRECTURI: http://${HOST}:8088/sso-callback
31+
CAMUNDA_SECURITY_AUTHENTICATION_OIDC_REDIRECTURI: http://${HOST}:8080/sso-callback
3232
CAMUNDA_SECURITY_AUTHENTICATION_OIDC_USERNAMECLAIM: preferred_username
3333
CAMUNDA_SECURITY_AUTHENTICATION_OIDC_CLIENTIDCLAIM: client_id
3434
ZEEBE_BROKER_GATEWAY_SECURITY_AUTHENTICATION_IDENTITY_ISSUERBACKENDURL: http://${KEYCLOAK_HOST}:18080/auth/realms/camunda-platform
@@ -331,7 +331,7 @@ services:
331331
CAMUNDA_MODELER_CLUSTERS_0_VERSION: ${CAMUNDA_VERSION}
332332
CAMUNDA_MODELER_CLUSTERS_0_URL_GRPC: grpc://orchestration:26500
333333
CAMUNDA_MODELER_CLUSTERS_0_URL_REST: http://orchestration:8080
334-
CAMUNDA_MODELER_CLUSTERS_0_URL_WEBAPP: http://localhost:8088
334+
CAMUNDA_MODELER_CLUSTERS_0_URL_WEBAPP: http://localhost:8080
335335
CAMUNDA_MODELER_CLUSTERS_0_AUTHENTICATION: BEARER_TOKEN
336336
CAMUNDA_MODELER_CLUSTERS_0_AUTHORIZATIONS_ENABLED: ${RESOURCE_AUTHORIZATIONS_ENABLED}
337337
management.endpoints.web.exposure.include: health,configprops

docker-compose/versions/camunda-8.9/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
ports:
1616
- "26500:26500"
1717
- "9600:9600"
18-
- "8088:8080"
18+
- "8080:8080"
1919
environment:
2020
- JAVA_TOOL_OPTIONS="-XX:+PrintFlagsFinal"
2121
mem_limit: 1g

docker-compose/versions/camunda-8.9/tests/operate_login.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ test('Operate login and dashboard access', async ({ page }) => {
44
test.setTimeout(120000);
55

66
// Navigate to Operate
7-
await page.goto('http://localhost:8088/operate');
7+
await page.goto('http://localhost:8080/operate');
88

99
// Wait for page to load and verify login form is present
1010
await page.waitForLoadState('networkidle');

docker-compose/versions/camunda-8.9/tests/tasklist_login.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ test('Tasklist login and dashboard access', async ({ page }) => {
44
test.setTimeout(120000);
55

66
// Navigate to Tasklist
7-
await page.goto('http://localhost:8088/tasklist');
7+
await page.goto('http://localhost:8080/tasklist');
88

99
// Wait for page to load and verify login form
1010
await page.waitForLoadState('networkidle');

0 commit comments

Comments
 (0)