This commit is contained in:
2026-06-15 00:49:37 +02:00
commit 753fd619e8
5 changed files with 717 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
services:
searxng:
image: docker.io/searxng/searxng:latest
container_name: ${SEARXNG}
extends:
file: ${SDK}/compose.yaml
service: service
env_file:
- ./searxng.env
restart: always
ports:
- ${SEARXNG_PORT}:8080
networks:
- ${SEARXNG}
- ${PROXY}
searxng-valkey:
image: docker.io/valkey/valkey:9-alpine
container_name: ${SEARXNG_VALKEY}
extends:
file: ${SDK}/compose.yaml
service: service
env_file:
- ./searxng.env
command: valkey-server --save 30 1 --loglevel warning
restart: always
networks:
- ${SEARXNG}
networks:
searxng:
proxy:
external: true