Last active
March 28, 2022 14:48
-
-
Save starbuck93/821ce02224c38f8c8944664fbf5f00d4 to your computer and use it in GitHub Desktop.
Update to the latest Portainer CE using docker commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Assuimg your current Portainer container name is simply "portainer" | |
docker stop portainer | |
docker rm portainer | |
docker image ls | grep portainer | awk '{print $3}' | xargs -I {} docker image rm {} | |
docker pull portainer/portainer-ce:latest | |
docker run -d -p 8000:8000 -p 9000:9000 -p 9443:9443 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment