16 lines
360 B
YAML
16 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
|