Merge pull request #52 from cprima-forks/fix/searxng-detection-improvements

fix(start_services): improve SearXNG container detection and startup clarity
This commit is contained in:
Cole Medin
2025-05-12 07:04:10 -05:00
committed by GitHub

View File

@@ -174,7 +174,7 @@ def check_and_fix_docker_compose_for_searxng():
# Check if uwsgi.ini exists inside the container
container_check = subprocess.run(
["docker", "exec", container_name, "sh", "-c", "[ -f /etc/searxng/uwsgi.ini ] && echo 'found' || echo 'not_found'"],
capture_output=True, text=True, check=True
capture_output=True, text=True, check=False
)
if "found" in container_check.stdout: