p3terx/yacd
# bridge network mode
docker run -d \
--name yacd \
--log-opt max-size=1m \
--restart unless-stopped \
-p 9091:9091 \
p3terx/yacd
# host network mode (If you need to use IPv6 network access, this is the easiest way)
docker run -d \
--name yacd \
--log-opt max-size=1m \
--restart unless-stopped \
--network host \
p3terx/yacd --port 9091 --ipv6
docker pull p3terx/yacd