Skip to content

Commit

Permalink
Merge pull request #4420 from ranjanmangla1/docker-extension-fix
Browse files Browse the repository at this point in the history
Closes#4386 added Installation instructions for Docker Extension
  • Loading branch information
leecalcote authored Jun 29, 2023
2 parents 56b18b2 + 96b58a8 commit 07f103a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/sections/Meshery/Meshery-platforms/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ const supported_platforms = [
<Code codeString={dedent`curl -L https://meshery.io/install | PLATFORM=docker bash -`
}
/>
<h2 style={{ marginTop: "20px" }}>Docker Extension</h2>
<Code codeString={dedent`docker extension install meshery/docker-extension-meshery:stable-latest`
}
/>
</>
)
},
Expand Down Expand Up @@ -217,7 +221,7 @@ const MesheryPlatforms = () => {
</Col>
))}
</Row>
<Container style={{ transition: "height 0.5s ease-in-out", height: installationStepsHeight, overflow: "hidden" }}>
<Container style={{ transition: "height 0.5s ease-in-out", height: currentPlatform.name == "Docker" ? "320px" : installationStepsHeight, overflow: "hidden" }}>
<Row className="installation-steps" >
{currentPlatform.name && currentPlatform.steps}
</Row>
Expand Down

0 comments on commit 07f103a

Please sign in to comment.