1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-05-13 22:06:55 +02:00

add searxng

This commit is contained in:
kev 2025-03-11 15:19:26 +08:00
parent bf2fc0e012
commit ec12f0a04b
3 changed files with 30 additions and 0 deletions

View File

@ -514,6 +514,7 @@ A collection of delicious docker recipes.
- [x] node-firefox - [x] node-firefox
- [x] standalone-firefox - [x] standalone-firefox
- [x] ghcr.io/roapi/roapi - [x] ghcr.io/roapi/roapi
- [x] docker.io/searxng/searxng
- [x] aerokube - [x] aerokube
- [x] selenoid - [x] selenoid
- [x] video-recorder - [x] video-recorder

7
searxng/README.md Normal file
View File

@ -0,0 +1,7 @@
searxng
=======
[SearXNG][1] is a free internet metasearch engine which aggregates results from
various search services and databases. Users are neither tracked nor profiled.
[1]: https://github.com/searxng/searxng

View File

@ -0,0 +1,22 @@
services:
searxng:
image: docker.io/searxng/searxng:latest
ports:
- "8080:8080"
volumes:
- ./data/searxng:/etc/searxng:rw
environment:
- SEARXNG_BASE_URL=https://searxng.easypi.duckdns.org/
- UWSGI_WORKERS=4
- UWSGI_THREADS=4
depends_on:
- redis
restart: unless-stopped
redis:
image: docker.io/valkey/valkey:8-alpine
command: valkey-server --save 30 1 --loglevel warning
volumes:
- ./data/redis:/data
restart: unless-stopped