Skip to content

Commit

Permalink
dozzle: fix healthcheck (#1519)
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros-k authored Feb 3, 2025
1 parent e3b4205 commit cf2db19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ix-dev/community/dozzle/templates/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% set c1 = tpl.add_container(values.consts.dozzle_container_name, "image") %}

{% do c1.set_user(values.run_as.user, values.run_as.group) %}
{% do c1.healthcheck.set_custom_test("/dozzle healthcheck") %}
{% do c1.healthcheck.set_custom_test(["CMD", "/dozzle", "healthcheck"]) %}

{% do c1.environment.add_env("DOZZLE_ADDR", ":%d"|format(values.network.web_port.port_number)) %}
{% do c1.environment.add_env("DOZZLE_MODE", "server") %}
Expand Down

0 comments on commit cf2db19

Please sign in to comment.