Document MCP-based container management for MCNS on rift, replacing the docker-compose workflow. Add deploy/mcns-rift.toml as the reference MCP service definition. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
393 B
TOML
18 lines
393 B
TOML
name = "mcns"
|
|
node = "rift"
|
|
active = true
|
|
|
|
[[components]]
|
|
name = "dns"
|
|
image = "mcr.svc.mcp.metacircular.net:8443/mcns:latest"
|
|
user = "0:0"
|
|
restart = "unless-stopped"
|
|
ports = [
|
|
"192.168.88.181:53:53/tcp",
|
|
"192.168.88.181:53:53/udp",
|
|
"100.95.252.120:53:53/tcp",
|
|
"100.95.252.120:53:53/udp",
|
|
]
|
|
volumes = ["/srv/mcns:/srv/mcns"]
|
|
cmd = ["server", "--config", "/srv/mcns/mcns.toml"]
|