Make the Docker network MTU configurable (#130)

This commit is contained in:
Michael
2022-07-10 00:08:52 +02:00
committed by GitHub
parent dda7d10d37
commit 204a4375fc
2 changed files with 2 additions and 1 deletions

View File

@@ -36,6 +36,7 @@ type DockerNetworkConfiguration struct {
Mode string `default:"pterodactyl_nw" yaml:"network_mode"`
IsInternal bool `default:"false" yaml:"is_internal"`
EnableICC bool `default:"true" yaml:"enable_icc"`
NetworkMTU int64 `default:"1500" yaml:"network_mtu"`
Interfaces dockerNetworkInterfaces `yaml:"interfaces"`
}