Files
homelab-optimized/hosts/vms/homelab-vm/searxng.yaml
Gitea Mirror Bot 1ab33b1e66
Some checks failed
Documentation / Deploy to GitHub Pages (push) Has been cancelled
Documentation / Build Docusaurus (push) Has been cancelled
Sanitized mirror from private repository - 2026-04-19 09:48:50 UTC
2026-04-19 09:48:50 +00:00

23 lines
530 B
YAML

# SearXNG — Privacy-respecting meta search engine
# Port: 8888
# URL: http://192.168.0.210:8888
# Aggregates results from Google, Bing, DuckDuckGo, etc. without tracking
services:
searxng:
image: searxng/searxng:latest
container_name: searxng
ports:
- "8888:8080"
volumes:
- /home/homelab/docker/searxng:/etc/searxng
environment:
- SEARXNG_BASE_URL=http://192.168.0.210:8888/
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
restart: unless-stopped