10 lines
280 B
Nix
10 lines
280 B
Nix
{
|
|
virtualisation.oci-containers.containers.n8n = {
|
|
image = "docker.io/n8nio/n8n:latest";
|
|
environmentFiles = ["/etc/environment-files/n8n.env"];
|
|
ports = ["127.0.0.1:5678:5678"];
|
|
volumes = ["n8n_data:/home/node/.n8n"];
|
|
extraOptions = ["--network=web"];
|
|
};
|
|
}
|