created SearXNG

This commit is contained in:
2026-05-10 23:13:56 -07:00
parent 8d909496f4
commit 5a242d7d18
+20
View File
@@ -0,0 +1,20 @@
services:
app:
container_name: searxng
image: searxng/searxng:${SEARXNG_VERSION:-latest}
volumes:
- /home/${SEARXNG_USERNAME:-searxng}/searxng/config:/etc/searxng:rw
- /home/${SEARXNG_USERNAME:-searxng}/searxng/cache:/var/cache/searxng
ports:
- ${SEARXNG_PORT:-8080}:8080
deploy:
resources:
limits:
memory: 512m
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "--proxy=off", "http://localhost:8080/healthz"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
restart: unless-stopped