blob: 1a9ff6b8c00af938cd7873d151deca0458ba224e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{config, ...}: {
networking.firewall.allowedUDPPorts = [19132];
virtualisation.oci-containers.containers = {
"Minecraft" = {
environment = {
EULA = "TRUE";
EMIT_SERVER_TELEMETRY = "true";
SERVER_NAME = "YServer";
TZ = config.time.timeZone;
VERSION = "1.21.81.2";
CONTENT_LOG_FILE_ENABLED = "true";
TEXTUREPACK_REQUIRED = "true";
ALLOW_CHEATS = "false";
DIFFICULTY = "1";
};
image = "itzg/minecraft-bedrock-server";
ports = ["0.0.0.0:19132:19132/udp"];
volumes = ["/srv/minecraft/:/data"];
};
};
}
|