carried over

This commit is contained in:
John Lancaster
2024-12-09 22:48:03 -06:00
parent ae1275fc20
commit 3e7762c10e

View File

@@ -1,4 +1,4 @@
{ ... }: { config, ... }:
{ {
virtualisation.oci-containers.containers.portainer-agent = { virtualisation.oci-containers.containers.portainer-agent = {
image = "portainer/agent:latest"; # Use the latest Portainer agent image image = "portainer/agent:latest"; # Use the latest Portainer agent image
@@ -6,7 +6,7 @@
"9001:9001" # Expose the Portainer agent API port "9001:9001" # Expose the Portainer agent API port
]; ];
volumes = [ volumes = [
"/etc/zoneinfo/America/Chicago:/etc/localtime:ro" "/etc/zoneinfo/${config.time.timeZone}:/etc/localtime:ro"
"/var/run/docker.sock:/var/run/docker.sock" "/var/run/docker.sock:/var/run/docker.sock"
]; ];
}; };