From e5cef818cea4da7d83ab7da1a78a8847898f5933 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Sat, 17 Jan 2026 18:11:36 -0500 Subject: [PATCH] added searxng --- searxng/docker-compose.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 searxng/docker-compose.yml diff --git a/searxng/docker-compose.yml b/searxng/docker-compose.yml new file mode 100644 index 0000000..78c0ca5 --- /dev/null +++ b/searxng/docker-compose.yml @@ -0,0 +1,11 @@ +services: + searxng: + image: searxng/searxng:latest + container_name: searxng + ports: + - 8888:8080 + environment: + - SEARXNG_BASE_URL=https://search.rishighan.com/ + volumes: + - /mnt/user/appdata/searxng:/etc/searxng + restart: unless-stopped