Notice
Recent Posts
Recent Comments
Today
Total
04-24 09:06
Archives
관리 메뉴

Jeongchul Kim

Portainer.io 본문

Docker

Portainer.io

김 정출 2020. 2. 24. 10:39

Portainer.io


https://www.portainer.io/ 

오픈소스로 Docker를 웹상에서 관리할 수 있게 도와주는 툴로 Web UI로 손쉽게 관리됨


설치 방법

Portainer에서 사용할 Volume 생성

$ docker volume create portainer_data


Portainer 실행

port 30000

$ docker run -d -p 30000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data --restart=always portainer/portainer


초기 접속시 admin 계정의 패스워드를 설정


Localhost, Remote 다양한 환경 선택이 가능합니다.

 

Portainer UI

container 관리하기가 용이하며, 웹 UI 상으로 동작 Container 를 중지하거나, 종료시키기 매우 편한 이점이 있습니다.

추가적으로 image 관리도 용이합니다. 


실시간 동작 중인 Container의 자원 사용량도 확인 가능합니다.


이미지 또한 관리하기 쉽습니다.


'Docker' 카테고리의 다른 글

Docker network 네트워크  (2) 2019.07.26
Docker run 명령어 in AWS EC2  (0) 2018.11.21
Docker AWS EC2 설치  (3) 2018.11.20
Google Cloud with Docker  (0) 2018.03.06
An Updated Performance Comparison of Virtual Machines and Linux Containers  (0) 2017.07.07
Comments