Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions modules/lowkey-vault/index.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,34 @@
---
title: Lowkey Vault
categories:
- other
- cloud
docs:
- id: java
url: https://github.com/nagyesta/lowkey-vault/tree/main/lowkey-vault-testcontainers
maintainer: community
example: |
```java
var lowkeyVault = LowkeyVaultContainerBuilder
.lowkeyVault("nagyesta/lowkey-vault:4.0.0-ubi9-minimal")
.build();
lowkeyVault.start();
```
installation: |
```xml
<dependency>
<groupId>com.github.nagyesta.lowkey-vault</groupId>
<artifactId>lowkey-vault-testcontainers</artifactId>
<version>RELEASE</version>
<scope>test</scope>
</dependency>
```
- id: dotnet
url: https://www.nuget.org/packages/Testcontainers.LowkeyVault
maintainer: core
example: |
```csharp
var lowkeyVaultContainer = new LowkeyVaultBuilder()
.WithImage("nagyesta/lowkey-vault:2.7.1-ubi9-minimal")
.WithImage("nagyesta/lowkey-vault:4.0.0-ubi9-minimal")
.Build();
await lowkeyVaultContainer.StartAsync();
```
Expand Down
Loading