1

ServeNix: Replace portainer with portainer/agent (user thinknix as master)

This commit is contained in:
2025-01-29 17:48:56 +01:00
parent 370268b9e6
commit 9c568262ca

View File

@ -4,27 +4,50 @@
pkgs,
...
}: {
virtualisation.oci-containers.containers.portainer = {
image = "portainer/portainer-ce:latest";
# virtualisation.oci-containers.containers.portainer = {
# image = "portainer/portainer-ce:latest";
# autoStart = true;
# dependsOn = [];
# ports = [
# # "8000:8000"
# # "9443:9443"
# ];
# volumes = [
# "portainer_config:/data"
# "/var/run/docker.sock:/var/run/docker.sock"
# ];
# environment = {};
# extraOptions = [
# "--net=behind-nginx"
# ];
# };
virtualisation.oci-containers.containers.portainer-agent = {
image = "portainer/agent:latest";
autoStart = true;
dependsOn = [];
ports = [
# "8000:8000"
# "9443:9443"
"9001:9001"
];
volumes = [
"portainer_config:/data"
"/var/run/docker.sock:/var/run/docker.sock"
"/var/lib/docker/volumes:/var/lib/docker/volumes"
];
environment = {};
extraOptions = [
"--net=behind-nginx"
# This container needs to be accessible from another machine inside the LAN
# "--net=behind-nginx"
];
};
}