From b9f131cae9645ec0797a22e289908e98e9c8cb6f Mon Sep 17 00:00:00 2001 From: Anthony McMahon <75223906+Anthony-Portainer@users.noreply.github.com> Date: Fri, 5 Feb 2021 14:48:35 +1300 Subject: [PATCH] Update linux.md --- docs/v2.0-be/deploy/linux.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/v2.0-be/deploy/linux.md b/docs/v2.0-be/deploy/linux.md index dc5ae7f..4d2962e 100644 --- a/docs/v2.0-be/deploy/linux.md +++ b/docs/v2.0-be/deploy/linux.md @@ -99,7 +99,6 @@ Run the following command to deploy the Agent in your Docker host.
docker run -d -p 9001:9001 --name portainer_agent --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v /var/lib/docker/volumes:/var/lib/docker/volumes portainer/agent:2.0.0
-Note: --tlsskipverify
has to be present when deploy an agent and the certs in the agent is not a supported scenario at this moment.
### Docker Swarm
Deploy Portainer Agent on a remote LINUX Swarm Cluster as a Swarm Service, run this command on a manager node in the remote cluster.
@@ -108,7 +107,6 @@ Deploy Portainer Agent on a remote LINUX Swarm Cluster as a Swarm Service, run t
docker service create --name portainer_agent --network portainer_agent_network --publish mode=host,target=9001,published=9001 -e AGENT_CLUSTER_ADDR=tasks.portainer_agent --mode global --mount type=bind,src=//var/run/docker.sock,dst=/var/run/docker.sock --mount type=bind,src=//var/lib/docker/volumes,dst=/var/lib/docker/volumes --mount type=bind,src=/,dst=/host portainer/agent:2.0.0
-Note: --tlsskipverify
has to be present when deploy an agent and the certs in the agent is not a supported scenario at this moment.
## Notes