you are viewing a single comment's thread
view the rest of the comments
[–] 2 points 2 years ago (1 child)

How did you change the logo? I tried to do that on my instance and failed miserably. Running it through docker.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 3 points 2 years ago

    You gotta mount the image to the place where searxng accesses it, like this in docker compose:

    volumes:
          - ./searxng:/etc/searxng:rw
          - type: bind
            source: ./images/searxng.png
            target: /usr/local/searxng/searx/static/themes/simple/img/searxng.png
    
    
  • source
  • parent