23 lines
538 B
Nix
23 lines
538 B
Nix
# Not in use, just reference.
|
|
{ config, ... }:
|
|
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";
|
|
};
|
|
};
|
|
}
|