mirror of
https://codeberg.org/angestoepselt/homepage.git
synced 2025-05-24 14:46:16 +00:00
Fix container health check formatting
This commit is contained in:
parent
b9c523b3ca
commit
bcb5b6d010
1 changed files with 4 additions and 1 deletions
|
|
@ -72,7 +72,10 @@
|
||||||
${pkgs.lighttpd}/bin/lighttpd -Df ${packages.lighttpdConfig}
|
${pkgs.lighttpd}/bin/lighttpd -Df ${packages.lighttpdConfig}
|
||||||
'') ];
|
'') ];
|
||||||
Healthcheck = {
|
Healthcheck = {
|
||||||
Test = [ "${pkgs.curl}/bin/curl" "--fail" "localhost" ];
|
Test = [
|
||||||
|
"CMD"
|
||||||
|
"${pkgs.curl}/bin/curl" "--fail" "localhost"
|
||||||
|
];
|
||||||
Interval = 30000000000; # 30 seconds
|
Interval = 30000000000; # 30 seconds
|
||||||
Timeout = 10000000000; # 10 seconds
|
Timeout = 10000000000; # 10 seconds
|
||||||
Retries = 3;
|
Retries = 3;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue