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