How do I publish a random port?
- Dominant language
- C#
- Stars
- 2.4k
- Forks
- 416
- PR merge metrics
- No merged PRs in 30d
Description
I'm attempting to dynamically assign a random port to a container upon its creation. I've been experimenting with various configurations, including setting the PortBindings property to null and trying different values for HostPort such as 0, null, an empty string, and "0". However, I haven't been successful in achieving the desired outcome. Here's the snippet of code I've been working with:
```csharp
CreateContainerParameters containerParameters = new CreateContainerParameters {
Name = name,
Image = type,
HostConfig = new HostConfig {
PortBindings = new Dictionary> {
{ "25565/tcp", [] }
}
}
};
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.