mirror of https://github.com/portainer/portainer
fix(endpoints): correct agent stack download url (#2667)
* 2584 fix(endpoints): correct agent stack download url The directions for installing the agent stack from the endpoints view used an old url. Update to the new url. * Drop the portainer- prefix for the download path and filename Co-Authored-By: dang3r <danielpcardoza@gmail.com>pull/2682/head
parent
899cd5f279
commit
9b6b6e09ae
|
@ -20,7 +20,7 @@ function ($q, $scope, $state, $filter, clipboard, EndpointService, GroupService,
|
|||
};
|
||||
|
||||
$scope.copyAgentCommand = function() {
|
||||
clipboard.copyText('curl -L https://portainer.io/download/agent-stack.yml -o agent-stack.yml && docker stack deploy --compose-file=agent-stack.yml portainer-agent');
|
||||
clipboard.copyText('curl -L https://downloads.portainer.io/agent-stack.yml -o agent-stack.yml && docker stack deploy --compose-file=agent-stack.yml portainer-agent');
|
||||
$('#copyNotification').show();
|
||||
$('#copyNotification').fadeOut(2000);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue