From 24a3d505e05966dc21037fa2be5862808fa6c82e Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 13 Jun 2023 04:00:00 -0400 Subject: [PATCH] sakura: update & pin docker images --- hosts/sakura/services/foundryvtt.nix | 2 +- hosts/sakura/services/homepage.nix | 2 +- hosts/sakura/services/hugo.nix | 2 +- hosts/sakura/services/searxng.nix | 2 +- hosts/sakura/services/stash.nix | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hosts/sakura/services/foundryvtt.nix b/hosts/sakura/services/foundryvtt.nix index 77daaf4..24ce6f7 100644 --- a/hosts/sakura/services/foundryvtt.nix +++ b/hosts/sakura/services/foundryvtt.nix @@ -2,7 +2,7 @@ _: { sops.secrets.foundry-username = {}; sops.secrets.foundry-password = {}; virtualisation.oci-containers.containers.foundryvtt = { - image = "felddy/foundryvtt:release"; + image = "felddy/foundryvtt:11.300.0"; volumes = [ "/home/notoh/docker/foundryvtt:/data" ]; diff --git a/hosts/sakura/services/homepage.nix b/hosts/sakura/services/homepage.nix index 322d7bd..fa65d39 100644 --- a/hosts/sakura/services/homepage.nix +++ b/hosts/sakura/services/homepage.nix @@ -1,6 +1,6 @@ _: { virtualisation.oci-containers.containers.homepage = { - image = "ghcr.io/benphelps/homepage"; + image = "ghcr.io/benphelps/homepage:v0.6.21"; volumes = [ "/home/notoh/docker/homepage:/app/config" "/var/run/docker.sock:/var/run/docker.sock:ro" diff --git a/hosts/sakura/services/hugo.nix b/hosts/sakura/services/hugo.nix index b758dbb..1ef3090 100644 --- a/hosts/sakura/services/hugo.nix +++ b/hosts/sakura/services/hugo.nix @@ -1,7 +1,7 @@ {pkgs, ...}: { environment.systemPackages = with pkgs; [hugo]; virtualisation.oci-containers.containers.hugo = { - image = "klakegg/hugo:0.101.0"; + image = "klakegg/hugo:0.111.3"; cmd = ["server"]; volumes = [ "/home/notoh/docker/hugo:/src" diff --git a/hosts/sakura/services/searxng.nix b/hosts/sakura/services/searxng.nix index 036c417..6d0d5a9 100644 --- a/hosts/sakura/services/searxng.nix +++ b/hosts/sakura/services/searxng.nix @@ -1,6 +1,6 @@ _: { virtualisation.oci-containers.containers.searxng = { - image = "searxng/searxng"; + image = "searxng/searxng:2023.6.10-5f11155c"; volumes = [ "/home/notoh/docker/searxng:/etc/searxng:rw" ]; diff --git a/hosts/sakura/services/stash.nix b/hosts/sakura/services/stash.nix index f9c23bf..9ec5f5e 100644 --- a/hosts/sakura/services/stash.nix +++ b/hosts/sakura/services/stash.nix @@ -1,6 +1,6 @@ _: { virtualisation.oci-containers.containers.stash = { - image = "stashapp/stash"; + image = "stashapp/stash:v0.21.0"; environment = { STASH_STASH = "/data/"; STASH_GENERATED = "/generated/";