This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Minecraft Java Paper Server + Geyser + Floodgate Docker Container - Docker Compose | |
| # Author: James A. Chambers - https://jamesachambers.com/minecraft-java-bedrock-server-together-geyser-floodgate/ | |
| # GitHub Repository: https://github.com/TheRemote/Legendary-Java-Minecraft-Geyser-Floodgate | |
| # To run multiple servers change the volume name under both "volumes" sections and select different ports | |
| services: | |
| minecraftbe: | |
| image: 05jchambers/legendary-minecraft-geyser-floodgate:latest | |
| container_name: minecraft | |
| restart: "unless-stopped" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # you need at least Talos v1.2.0-beta.0 | |
| # and enable API access per https://www.talos.dev/v1.2/advanced/talos-api-access-from-k8s/ | |
| # namespace in machineConfig must match namespace here | |
| # | |
| # once this is running you can test `talosctl` commands by exec'ing into the container | |
| --- | |
| apiVersion: talos.dev/v1alpha1 | |
| kind: ServiceAccount | |
| metadata: | |
| name: test-deployment-talos-secrets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -eEuo pipefail | |
| nodes=(node1 node2 node3) | |
| nodeCpu=2 | |
| nodeRam=2048 | |
| nodeDisk=70 | |
| nodeDiskDir="/srv/vm/c3os" | |
| c3osIso="/opt/iso/c3os/c3os-alpine-v1.24.3-56.iso" | |
| #c3osIso="/opt/iso/c3os/c3os-opensuse-v1.23.6-53.iso" |