[mcp] Reorganizing container files

This commit is contained in:
2025-03-02 18:10:54 -08:00
parent 0f9e7457f5
commit fdd0c9a9ad
3 changed files with 53 additions and 40 deletions

View File

@@ -0,0 +1,16 @@
# Shared Postgres Database
{ ... }:
{
virtualisation.oci-containers.db = {
image = "docker.io/postgres:16-alpine";
autoStart = true;
volumes = [
# TODO: move to faster storage?
"/tank/db:/var/lib/postgresql/data"
];
environment = {};
extraOptions = [
"-l=traefik.enable=false"
];
};
}