From d8fdba8f6dbb1177db613a8f60dbed124d7c4cd8 Mon Sep 17 00:00:00 2001 From: Kieran Eglin Date: Fri, 3 Jan 2025 15:40:36 -0800 Subject: [PATCH 1/2] Bumped version --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index cc5686b..bcd8f86 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Pinchflat.MixProject do def project do [ app: :pinchflat, - version: "2024.12.31", + version: "2025.1.3", elixir: "~> 1.17", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, From 8a40d296c4143450c71ad110663a184d63a56b1d Mon Sep 17 00:00:00 2001 From: Kieran Date: Thu, 9 Jan 2025 11:17:55 -0800 Subject: [PATCH 2/2] Updated healthcheck to run every 30s (#555) --- docker/selfhosted.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/selfhosted.Dockerfile b/docker/selfhosted.Dockerfile index 235206a..a9956fc 100644 --- a/docker/selfhosted.Dockerfile +++ b/docker/selfhosted.Dockerfile @@ -129,7 +129,7 @@ EXPOSE ${PORT} # Only copy the final release from the build stage COPY --from=builder /app/_build/${MIX_ENV}/rel/pinchflat ./ -HEALTHCHECK --interval=120s --start-period=10s \ +HEALTHCHECK --interval=30s --start-period=15s \ CMD curl --fail http://localhost:${PORT}/healthcheck || exit 1 # Start the app