Skip to content

Commit

Permalink
Bump umami to v1.40
Browse files Browse the repository at this point in the history
This is a prerequisite to upgrading to v2.
  • Loading branch information
barrucadu committed Jan 30, 2024
1 parent 923988f commit 60b22f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shared/umami/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ in
nixfiles.oci-containers.pods.umami = {
containers = {
web = {
image = "ghcr.io/mikecao/umami:${cfg.umamiTag}";
image = "ghcr.io/umami-software/umami:${cfg.umamiTag}";
environment = {
"DATABASE_URL" = if backend == "docker" then "postgres://umami:umami@umami-db/umami" else "postgres://umami:umami@localhost/umami";
};
Expand Down
4 changes: 2 additions & 2 deletions shared/umami/options.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ with lib;

umamiTag = mkOption {
type = types.str;
default = "postgresql-latest";
default = "postgresql-v1.40";
description = mdDoc ''
Tag to use of the `ghcr.io/mikecao/umami` container image.
Tag to use of the `ghcr.io/umami-software/umami` container image.
'';
};

Expand Down

0 comments on commit 60b22f7

Please sign in to comment.