lns/docker-compose.yml
Claude 6825b8b43e
feat(lns): Lethean Name Server v0.1.0
Go binary serving .lthn DNS from ITNS sidechain.
- DNS over UDP+TCP (A, AAAA, TXT, NS, SOA, PTR)
- Chain-based discovery via get_all_alias_details
- Tree-root invalidation (getblockchaininfo)
- hns= alias comment override
- Health endpoint (/health)
- 672 lines, core/go@v0.8.0-alpha.1

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 22:28:46 +01:00

15 lines
360 B
YAML

# LNS — Lethean Name Server
# Usage: docker compose up -d
services:
lns:
build: .
container_name: lthn-lns
network_mode: host
environment:
LNS_MODE: light
DAEMON_URL: http://127.0.0.1:46941
HSD_URL: http://127.0.0.1:14037
HSD_API_KEY: testkey
DNS_PORT: "53"
HTTP_PORT: "5553"
restart: unless-stopped