10 lines
294 B
Nix
10 lines
294 B
Nix
{
|
|
virtualisation.oci-containers.containers.baserow = {
|
|
image = "docker.io/baserow/baserow:latest";
|
|
environmentFiles = ["/etc/environment-files/baserow.env"];
|
|
ports = ["127.0.0.1:3000:80"];
|
|
volumes = ["baserow_data:/baserow/data"];
|
|
extraOptions = ["--network=web"];
|
|
};
|
|
}
|