mirror of https://github.com/tiyn/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
308 B
11 lines
308 B
#!/bin/sh
|
|
docker stop portainer_agent
|
|
docker rm portainer_agent
|
|
docker pull portainer/agent:latest
|
|
docker run --name portainer_agent \
|
|
-p 9001:9001 \
|
|
--restart unless-stopped \
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
-v /var/lib/docker/volumes:/var/lib/docker/volumes \
|
|
-d portainer/agent:latest
|