SearXNG for casaos

I was looking for a search I could replace all others that I could put on casaos and I found SearXNG. It would be a very nice addition to the BBC app collection for casaos.

1 Like

I have it on my unraid server and its great. Wish I knew how to make it work on casaos.

This would be awesome, google just keeps giving AMP and other strange results that I just couldnt stand anymore

For anyone else wanting SearXNG still, this is how I have it set up, obviously change the host paths/ports to suit your setup:

name: searxng
services:
  searxng:
    cpu_shares: 90
    command: []
    container_name: searxng
    deploy:
      resources:
        limits:
          memory: 16598401024
        reservations:
          devices: []
    image: alandoyle/searxng:latest
    init: true
    labels:
      icon: http://192.168.1.220:8082/static/themes/simple/img/favicon.png
    ports:
      - target: 8080
        published: "8082"
        protocol: tcp
    restart: unless-stopped
    volumes:
      - type: bind
        source: /media/Main/AppData/searxng
        target: /etc/searxng
      - type: bind
        source: /media/Main/AppData/searxng/cache
        target: /var/cache/searxng
      - type: bind
        source: /media/Main/AppData/searxng/templates
        target: /usr/local/searxng/searx/templates/simple
      - type: bind
        source: /media/Main/AppData/searxng/themes
        target: /usr/local/searxng/searx/static/themes/simple
    devices: []
    cap_add: []
    environment: []
    network_mode: bridge
    privileged: false
1 Like