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
259 B
11 lines
259 B
5 years ago
|
#!/bin/sh
|
||
|
docker stop portainer
|
||
|
docker rm portainer
|
||
|
docker pull portainer/portainer:latest
|
||
|
docker run --name portainer \
|
||
|
--restart unless-stopped \
|
||
|
-p 9000:9000 \
|
||
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
||
|
-v portainer:/data \
|
||
|
-d portainer/portainer
|