13 lines
381 B
Nix
13 lines
381 B
Nix
{ config, ... }:
|
|
{
|
|
virtualisation.oci-containers.containers.portainer-agent = {
|
|
image = "portainer/agent:latest"; # Use the latest Portainer agent image
|
|
ports = [
|
|
"9001:9001" # Expose the Portainer agent API port
|
|
];
|
|
volumes = [
|
|
"/etc/zoneinfo/${config.time.timeZone}:/etc/localtime:ro"
|
|
"/var/run/docker.sock:/var/run/docker.sock"
|
|
];
|
|
};
|
|
} |