Skip to content

Commit

Permalink
fix: port bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
dejanb committed Sep 22, 2023
1 parent 3cd1861 commit 054478b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions deploy/compose/compose-trustification.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
expose:
- "$VEXINATION_API_PORT"
ports:
- "$VEXINATION_API_PORT:8080"
- "$VEXINATION_API_PORT:$VEXINATION_API_PORT"
command:
- -c
- |
Expand All @@ -29,6 +29,7 @@ services:
ISSUER_URL: http://keycloak:8080/realms/chicken
INFRASTRUCTURE_ENABLED: "true"
OPENID_CONFIGURATION: "http://keycloak:8080/realms/chicken/.well-known/openid-configuration"
HTTP_SERVER_BIND_ADDR: "::"

vexination-indexer:
image: $TRUST_IMAGE:${TRUST_VERSION:?TRUST_VERSION is required}
Expand All @@ -44,7 +45,7 @@ services:
expose:
- "$BOMBASTIC_API_PORT"
ports:
- "$BOMBASTIC_API_PORT:8080"
- "$BOMBASTIC_API_PORT:$BOMBASTIC_API_PORT"
command:
- -c
- |
Expand All @@ -65,6 +66,7 @@ services:
INFRASTRUCTURE_ENABLED: "true"
OPENID_CONFIGURATION: "http://keycloak:8080/realms/chicken/.well-known/openid-configuration"
STORAGE_ENDPOINT: http://minio:9000
HTTP_SERVER_BIND_ADDR: "::"

bombastic-indexer:
image: $TRUST_IMAGE:${TRUST_VERSION:?TRUST_VERSION is required}
Expand All @@ -83,7 +85,7 @@ services:
expose:
- "$SPOG_API_PORT"
ports:
- "$SPOG_API_PORT:8080"
- "$SPOG_API_PORT:$SPOG_API_PORT"
command:
- -c
- |
Expand All @@ -103,6 +105,7 @@ services:
ISSUER_URL: http://keycloak:8080/realms/chicken
INFRASTRUCTURE_ENABLED: "true"
OPENID_CONFIGURATION: "http://keycloak:8080/realms/chicken/.well-known/openid-configuration"
HTTP_SERVER_BIND_ADDR: "::"

spog-ui:
image: $TRUST_UI_IMAGE:${TRUST_VERSION:?TRUST_VERSION is required}
Expand All @@ -119,7 +122,7 @@ services:
expose:
- "$SPOG_UI_PORT"
ports:
- "$SPOG_UI_PORT:8080"
- "$SPOG_UI_PORT:$SPOG_UI_PORT"

v11y-api:
image: $TRUST_IMAGE:${TRUST_VERSION:?TRUST_VERSION is required}
Expand Down

0 comments on commit 054478b

Please sign in to comment.