Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add searxng #413

Merged
merged 4 commits into from
Sep 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
stavros-k committed Sep 13, 2024
commit c4479ecdace35cc84cbdfd8fab6c3ae7710c8a1a
4 changes: 2 additions & 2 deletions ix-dev/community/searxng/templates/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ services:
{% if values.network.dns_opts %}
dns_opt: {{ ix_lib.base.network.dns_opts(values.network.dns_opts) | tojson }}
{% endif %}
{% set test = ix_lib.base.healthchecks.curl_test(port=values.network.web_port, path="/healthz") %}
{% set test = ix_lib.base.healthchecks.wget_test(port=values.network.web_port, path="/healthz") %}
healthcheck: {{ ix_lib.base.healthchecks.check_health(test) | tojson }}
environment: {{ ix_lib.base.environment.envs(app={
"BIND_ADDRESS": "0.0.0.0:%d"|format(values.network.host_network),
"BIND_ADDRESS": "0.0.0.0:%d"|format(values.network.web_port),
"INSTANCE_NAME": values.searxng.instance_name,
}, user=values.searxng.additional_envs, values=values) | tojson }}
{% if not values.network.host_network %}
Expand Down
Loading