minecraft: added minecraft server podman service
This commit is contained in:
parent
2f3a8bcde4
commit
a0ddbd5159
|
@ -13,6 +13,7 @@ in
|
|||
redmage-demo.enable = lib.mkEnableOption "redmage-demo podman";
|
||||
qbittorrent.enable = lib.mkEnableOption "qbittorrent podman";
|
||||
openobserve.enable = lib.mkEnableOption "openobserve podman";
|
||||
minecraft.enable = mkEnableOption "minecraft server podman";
|
||||
|
||||
servarr = {
|
||||
enable = mkEnableOption "servarr group";
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
servarr.real-debrid-manager.enable = false;
|
||||
servarr.rdtclient.enable = true;
|
||||
openobserve.enable = true;
|
||||
minecraft.enable = true;
|
||||
};
|
||||
|
||||
docker = {
|
||||
|
|
|
@ -41,6 +41,7 @@ in
|
|||
# 10.88.0.6 -> Suwayomi Flaresolverr
|
||||
# 10.88.1.1 -> Pihole
|
||||
imports = [
|
||||
./minecraft.nix
|
||||
./openobserve.nix
|
||||
./pihole.nix
|
||||
./qbittorrent.nix
|
||||
|
|
75
system/podman/minecraft.nix
Normal file
75
system/podman/minecraft.nix
Normal file
|
@ -0,0 +1,75 @@
|
|||
{ config, lib, ... }:
|
||||
let
|
||||
name = "minecraft";
|
||||
podman = config.profile.podman;
|
||||
inherit (lib) mkIf;
|
||||
ip = "10.88.200.1";
|
||||
image = "docker.io/05jchambers/legendary-minecraft-purpur-geyser:latest";
|
||||
rootVolume = "/nas/podman/minecraft";
|
||||
domain = "${name}.tigor.web.id";
|
||||
user = config.profile.user;
|
||||
uid = toString user.uid;
|
||||
gid = toString user.gid;
|
||||
in
|
||||
{
|
||||
config = mkIf (podman.enable && podman.${name}.enable) {
|
||||
services.caddy.virtualHosts.${domain}.extraConfig = /*html*/ ''
|
||||
header Content-Type text/html
|
||||
respond <<EOF
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Minecraft Server</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Congrats! The minecraft server should be up!</h1>
|
||||
<p>
|
||||
For security reasons, connecting to the server requires Wireguard to be connected.
|
||||
Ensure they are on first otherwise you won't be able to connect.
|
||||
</p>
|
||||
<p>
|
||||
The server supports both Java and Bedrock Edition. Both shares the same world and can
|
||||
play together. They only need to connect to different ports depending on the edition.
|
||||
</p>
|
||||
<p>Minecraft Java Server: <b>${domain}:25565</b></p>
|
||||
<p>Minecraft Bedrock Server: <b>${domain}:19132</b></p>
|
||||
</body>
|
||||
</html>
|
||||
EOF 200
|
||||
'';
|
||||
|
||||
system.activationScripts."podman-${name}" = ''
|
||||
mkdir -p ${rootVolume}
|
||||
chown ${uid}:${gid} ${rootVolume}
|
||||
'';
|
||||
|
||||
virtualisation.oci-containers.containers.${name} = {
|
||||
inherit image;
|
||||
hostname = name;
|
||||
autoStart = true;
|
||||
user = "${uid}:${gid}";
|
||||
environment = {
|
||||
TZ = "Asia/Jakarta";
|
||||
};
|
||||
ports = [
|
||||
# Java Edition Ports
|
||||
"25565:25565/udp"
|
||||
"25565:25565"
|
||||
# Bedrock Edition Ports
|
||||
"19132:19132/udp"
|
||||
"19132:19132"
|
||||
];
|
||||
volumes = [
|
||||
"${rootVolume}:/minecraft"
|
||||
];
|
||||
extraOptions = [
|
||||
"--network=podman"
|
||||
"--ip=${ip}"
|
||||
];
|
||||
labels = {
|
||||
"io.containers.autoupdate" = "registry";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in a new issue