[Nix] Adds MCP config.
This commit is contained in:
22
system/hosts/mcp/containers/baserow.nix
Normal file
22
system/hosts/mcp/containers/baserow.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
# Not in use, just reference.
|
||||
{ config, pkgs, ... }:
|
||||
let inherit (import ./lib.nix config) mkContainer; in
|
||||
{
|
||||
virtualisation.oci-containers.containers.baserow = mkContainer {
|
||||
image = "baserow/baserow";
|
||||
hostName = "baserow";
|
||||
port = 80;
|
||||
volumes = [
|
||||
"/tank/baserow:/baserow/data"
|
||||
];
|
||||
environment = {
|
||||
BASEROW_PUBLIC_URL = "https://baserow.havenisms.com";
|
||||
};
|
||||
homepageOpts = {
|
||||
group = "Apps";
|
||||
name = "Baserow";
|
||||
icon = "baserow.svg";
|
||||
description = "No-Code Databases";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user