mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-14 03:33:43 +08:00
10 lines
400 B
Docker
10 lines
400 B
Docker
# Custom SearXNG image for MateClaw.
|
|
#
|
|
# Bakes our settings.yml into /etc/searxng/settings.yml so the sidecar works
|
|
# out of the box with no host bind-mount. The upstream image ships JSON output
|
|
# disabled and the Limiter plugin enabled — both silently break mateclaw's
|
|
# SearXNGSearchProvider, so this override is required.
|
|
FROM searxng/searxng:latest
|
|
|
|
COPY settings.yml /etc/searxng/settings.yml
|