Files
system-config/system/hosts/mcp/containers/baserow.nix
2025-03-02 14:35:06 -08:00

22 lines
543 B
Nix

# 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";
};
};
}