thiagoelg commented on code in PR #3461:
URL:
https://github.com/apache/incubator-kie-tools/pull/3461#discussion_r2850263724
##########
packages/online-editor/src/extendedServices/ExtendedServicesModal.tsx:
##########
@@ -819,17 +226,25 @@ export function ExtendedServicesModal() {
)}
{modalPage === ModalPage.WIZARD && (
<div>
- <Form isHorizontal={true}>
- <FormGroup fieldId={"select-os"} label={i18n.terms.os.full}>
- <SelectOs selected={operatingSystem}
onSelect={setOperatingSystem} direction={SelectDirection.down} />
- </FormGroup>
- </Form>
<br />
- <Wizard
- steps={wizardSteps}
- height={400}
- footer={<ExtendedServicesWizardFooter onClose={onClose}
steps={wizardSteps} setModalPage={setModalPage} />}
- />
+
+ <List>
+ <ListItem>
+ Install <a href="https://podman-desktop.io/">Podman Desktop</a>
or any other local Container management
+ platform.
+ </ListItem>
+ <ListItem>Run the Extended Services container locally.</ListItem>
+ <ListItem>
+ <ClipboardCopy isReadOnly hoverTip="Copy" clickTip="Copied">
+ {`docker run --rm -p
${extendedServices.config.port}:${extendedServices.config.port}
docker.io/apache/incubator-kie-sandbox-extended-services:${extendedServices.version}`}
Review Comment:
```suggestion
{`docker run --rm -p
${extendedServicesImage.port}:${extendedServicesImage.port}
${extendedServicesImage.registry}/${extendedServicesImage.account}/${extendedServicesImage.name}:${extendedServicesImage.buildTag}`}
```
I think it makes sense to use the
`@kie-tools/kie-sandbox-extended-services-image` env here, right?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]