User Tools

Site Tools


homeautomatisation:portainer

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
homeautomatisation:portainer [2022/08/14 12:09] illuhomeautomatisation:portainer [2023/12/16 22:45] (current) – removed illu
Line 1: Line 1:
-====== Portainer ====== 
-[[https://www.portainer.io/|https://www.portainer.io/]] 
  
-The comfortable gui to work with [[docker|docker]]. 
- 
-howto easy install:  
-<code bash> 
-docker volume create portainer_data 
-docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:2.11.1 
-docker ps 
-</code> 
- 
-portainer running on webinterface https://intelnuc:9443 
- 
-UPDATE 
-<code bash> 
-docker stop portainer 
-docker rm portainer 
-docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest 
-</code>