add gamessoc minecraft server
This commit is contained in:
parent
b455f8473e
commit
709bfd1323
2 changed files with 47 additions and 0 deletions
|
@ -57,6 +57,8 @@ config:
|
|||
backend: vanilla-mc.service.consul:25567
|
||||
- host: shemek.rb.dcu.ie
|
||||
backend: shemek-mc.service.consul:25568
|
||||
- host: games.rb.dcu.ie
|
||||
backend: games-mc.service.consul:25569
|
||||
EOH
|
||||
destination = "local/file.conf"
|
||||
}
|
||||
|
|
|
@ -44,6 +44,51 @@ job "minecraft" {
|
|||
}
|
||||
}
|
||||
|
||||
group "games-mc" {
|
||||
count = 1
|
||||
|
||||
network {
|
||||
port "mc-games-port" {
|
||||
static = 25569
|
||||
to = 25565
|
||||
}
|
||||
|
||||
port "mc-games-rcon" {
|
||||
to = 25575
|
||||
}
|
||||
}
|
||||
|
||||
service {
|
||||
name = "games-mc"
|
||||
}
|
||||
|
||||
task "minecraft-games" {
|
||||
driver = "docker"
|
||||
|
||||
config {
|
||||
image = "itzg/minecraft-server"
|
||||
ports = ["mc-games-port","mc-games-rcon"]
|
||||
|
||||
volumes = [
|
||||
"/storage/nomad/${NOMAD_TASK_NAME}:/data"
|
||||
]
|
||||
}
|
||||
|
||||
resources {
|
||||
cpu = 7000 # 7000 MHz
|
||||
memory = 17408 # 17GB
|
||||
}
|
||||
|
||||
env {
|
||||
EULA = "TRUE"
|
||||
TYPE = "PURPUR"
|
||||
VERSION = "1.20.1"
|
||||
MOTD = "DCU Games Minecraft Server"
|
||||
OPS = ""
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
group "fugitives-mc" {
|
||||
count = 1
|
||||
|
||||
|
|
Loading…
Reference in a new issue