observation conversion
This commit is contained in:
13
portainer.nix
Normal file
13
portainer.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ ... }:
|
||||
{
|
||||
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/America/Chicago:/etc/localtime:ro"
|
||||
"/var/run/docker.sock:/var/run/docker.sock"
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user