chore: baserow update

This commit is contained in:
m3tm3re
2026-02-20 16:07:36 +01:00
parent 6743043035
commit f4321fced4
5 changed files with 15 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
servicePort = portUtils.getPort serviceName "AZ-CLD-1";
in {
virtualisation.oci-containers.containers.${serviceName} = {
image = "docker.io/baserow/baserow:2.0.6";
image = "docker.io/baserow/baserow:2.1.0";
environment = {
BASEROW_AMOUNT_OF_GUNICORN_WORKERS = "4";
BASEROW_AMOUNT_OF_WORKERS = "2";

View File

@@ -9,7 +9,7 @@
in {
virtualisation.oci-containers.containers.${serviceName} = {
#image = "ghcr.io/berriai/litellm:v1.78.5-stable";
image = "docker.litellm.ai/berriai/litellm:v1.80.15-stable";
image = "docker.litellm.ai/berriai/litellm:v1.81.9-stable";
ports = ["127.0.0.1:${toString servicePort}:4000"];
environmentFiles = [config.age.secrets.litellm-env.path];
environment = {

View File

@@ -3,6 +3,7 @@
./containers
./gitea.nix
./gotenberg.nix
./metabase.nix
./n8n.nix
./ntfy.nix

View File

@@ -0,0 +1,11 @@
{lib, ...}: let
serviceName = "gotenberg";
portUtils = import ../../../lib/port-utils.nix {inherit lib;};
servicePort = portUtils.getPort serviceName "AZ-CLD-1";
in {
services.gotenberg = {
enable = true;
port = servicePort;
bindIP = "127.0.0.1";
};
}