.
This commit is contained in:
Executable
+16
@@ -0,0 +1,16 @@
|
||||
# Setup the Portainer Agent on a Docker Swarm cluster
|
||||
|
||||
docker network create \
|
||||
--driver overlay \
|
||||
portainer_agent_network
|
||||
|
||||
docker service create \
|
||||
--name portainer_agent \
|
||||
--network portainer_agent_network \
|
||||
-p 9001:9001/tcp \
|
||||
--mode global \
|
||||
--constraint 'node.platform.os == linux' \
|
||||
--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.39.2
|
||||
Reference in New Issue
Block a user