No description
Find a file
2026-08-12 22:12:21 +00:00
docs docs: add OCI storage volume expansion guide 2026-08-11 11:45:13 -04:00
instances/forge-1.20.1-survival merging mod count 2026-08-12 18:08:21 -04:00
.gitignore added config folder to gitignore 2026-08-12 22:12:21 +00:00
README.md first commit 2026-08-10 14:24:14 -04:00

Minecraft Server Infrastructure Repository

Mono-repo containing infrastructure baselines, operational runbooks, and instance profile specifications for containerized Minecraft servers.

Repository Architecture

.
├── .gitignore
├── README.md
├── docs/
│   ├── infrastructure-base.md       # Cloud VM, host OS, BBR, UFW, & Docker daemon baseline
│   └── operations-manual.md         # Daily administration, RCON guide, log filtering, & clean state runbooks
└── instances/
    └── forge-1.20.1-survival/       # Instance profile (Forge 1.20.1)
        ├── README.md                # Instance spec, Compose config, JVM flags, & Mod Manifest (62 mods)
        ├── mod-configs.md           # Mod configuration matrix & validated TOML/JSON schemas
        ├── patches/
        │   └── lts-auth/            # LTS Auth source code & in-container build script
        └── runtime/                 # Active Docker runtime directory
            ├── docker-compose.yml   # Production compose stack
            └── data/                # Minecraft server data volume

Quick Start (Deploying Instance)

  1. Navigate to the instance runtime folder:
    cd instances/forge-1.20.1-survival/runtime
    
  2. Start the container:
    docker compose up -d
    
  3. Stream startup logs:
    docker logs -f mc_forge_server