postgres initialScript redundancy removed

This commit is contained in:
m3tam3re
2025-01-20 11:36:17 +01:00
parent 6606d63a20
commit 4c0c2181ef
5 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
{config, ...}: {
virtualisation.oci-containers.containers."ghost" = {
image = "docker.io/ghost:5.89";
image = "docker.io/ghost:5.106.1";
environmentFiles = [config.age.secrets.ghost-env.path];
ports = ["3002:2368"];
ports = ["127.0.0.1:3002:2368"];
volumes = ["ghost_data:/var/lib/ghost/content"];
extraOptions = ["--add-host=mysql:10.89.0.1" "--ip=10.89.0.11" "--network=web"];
};