This commit is contained in:
2026-04-27 22:01:07 +02:00
parent e6ba98cd44
commit dec44d1a91

View File

@@ -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
- SEARXNG_HOSTNAME=search.seanluc.de # Deine öffentliche Domain
depends_on:
- redis
networks:
- pangolintunnel_default
networks:
pangolintunnel_default:
external: true
searxng_net: