From dec44d1a912e53dff99435d31f6135365690dd48 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 27 Apr 2026 22:01:07 +0200 Subject: [PATCH] search --- compose/searxng/docker-compose.yml | 32 ++++++++++++++++-------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/compose/searxng/docker-compose.yml b/compose/searxng/docker-compose.yml index 4a2eea7..f0ecc6b 100644 --- a/compose/searxng/docker-compose.yml +++ b/compose/searxng/docker-compose.yml @@ -1,22 +1,24 @@ -version: "3.8" - services: - searxng: - image: searxng/searxng:latest - container_name: searxng + redis: + container_name: searxng-redis + image: redis:alpine + command: redis-server --save "" --appendonly no + networks: + - searxng_net + searxng: + container_name: searxng + image: searxng/searxng:latest + networks: + - searxng_net + ports: + - "8888:8080" # Lokal erreichbar unter http://VM-IP:8888 volumes: - /srv/docker/daten/searxng:/etc/searxng - environment: - - BASE_URL=https://search.seanluc.de - - INSTANCE_NAME=private-searxng - - restart: unless-stopped - - networks: - - pangolintunnel_default + - SEARXNG_HOSTNAME=search.seanluc.de # Deine öffentliche Domain + depends_on: + - redis networks: - pangolintunnel_default: - external: true \ No newline at end of file + searxng_net: \ No newline at end of file