mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 21:35:23 +02:00
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>
This commit is contained in:
parent
899cd5f279
commit
9b6b6e09ae
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue