diff --git a/modules/forgejo/index.md b/modules/forgejo/index.md
new file mode 100644
index 0000000..8f594b2
--- /dev/null
+++ b/modules/forgejo/index.md
@@ -0,0 +1,19 @@
+---
+title: Forgejo
+categories:
+ - other
+docs:
+ - id: go
+ url: https://golang.testcontainers.org/modules/forgejo/
+ maintainer: core
+ example: |
+ ```go
+ forgejoContainer, err := forgejo.Run(ctx, "codeberg.org/forgejo/forgejo:11")
+ ```
+ installation: |
+ ```bash
+ go get github.com/testcontainers/testcontainers-go/modules/forgejo
+ ```
+description: |
+ Forgejo is a self-hosted, lightweight Git forge and a community-driven fork of Gitea, providing a code hosting solution.
+---
diff --git a/modules/forgejo/logo.svg b/modules/forgejo/logo.svg
new file mode 100644
index 0000000..5debe7e
--- /dev/null
+++ b/modules/forgejo/logo.svg
@@ -0,0 +1 @@
+
diff --git a/modules/lowkey-vault/index.md b/modules/lowkey-vault/index.md
index bfe3672..920cc01 100644
--- a/modules/lowkey-vault/index.md
+++ b/modules/lowkey-vault/index.md
@@ -35,6 +35,17 @@ docs:
```bash
dotnet add package Testcontainers.LowkeyVault
```
+ - id: go
+ url: https://golang.testcontainers.org/modules/azure/#lowkeyvault
+ maintainer: core
+ example: |
+ ```go
+ lowkeyVaultContainer, err := lowkeyvault.Run(ctx, "nagyesta/lowkey-vault:7.0.9-ubi10-minimal")
+ ```
+ installation: |
+ ```bash
+ go get github.com/testcontainers/testcontainers-go/modules/azure
+ ```
description: |
Lowkey Vault is a test double (fake object) aspiring to be compatible with Azure Key Vault REST APIs.
---
diff --git a/modules/tidb/index.md b/modules/tidb/index.md
index b852b78..7ba08f6 100644
--- a/modules/tidb/index.md
+++ b/modules/tidb/index.md
@@ -20,6 +20,17 @@ docs:
test
```
+ - id: go
+ url: https://golang.testcontainers.org/modules/tidb/
+ maintainer: core
+ example: |
+ ```go
+ ctr, err := tidb.Run(ctx, "pingcap/tidb:v8.4.0")
+ ```
+ installation: |
+ ```bash
+ go get github.com/testcontainers/testcontainers-go/modules/tidb
+ ```
description: |
TiDB is an open-source NewSQL database that supports Hybrid Transactional and Analytical Processing workloads. It is MySQL compatible and can provide horizontal scalability, strong consistency, and high availability.
---