> ## Documentation Index
> Fetch the complete documentation index at: https://onecli.sh/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Java / Kotlin SDK (Coming Soon)

> Java SDK for configuring containers to route through the OneCLI gateway. Works with Kotlin and any JVM language.

<Info>The Java SDK is currently in development. Check back soon or follow us on [GitHub](https://github.com/onecli/onecli) for updates.</Info>

The Java SDK will allow you to programmatically configure Docker containers to route through the OneCLI proxy from Java and Kotlin applications.

## Planned installation

```xml theme={null}
<dependency>
  <groupId>sh.onecli</groupId>
  <artifactId>sdk</artifactId>
  <version>0.1.0</version>
</dependency>
```

## Planned usage

```java theme={null}
import sh.onecli.OneCLI;

OneCLI oc = new OneCLI("http://localhost:18080");

ContainerConfig config = oc.getContainerConfig();
System.out.println(config.getEnv());
System.out.println(config.getMounts());
```

Want this SDK sooner? [Let us know on GitHub](https://github.com/onecli/onecli/issues).
