Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
05-16 01:30
관리 메뉴

nomad-programmer

[DevOps/Docker] Portainer (도커와 쿠버네티스 관리를 쉽게) 본문

DevOps/Docker

[DevOps/Docker] Portainer (도커와 쿠버네티스 관리를 쉽게)

scii 2023. 8. 27. 14:35

Portainer는 Docker와 Kubernetes 관리를 WEB GUI에서 쉽게 관리할 수 있도록 도와주는 오픈 소스이다.

https://github.com/portainer/portainer

 

GitHub - portainer/portainer: Making Docker and Kubernetes management easy.

Making Docker and Kubernetes management easy. Contribute to portainer/portainer development by creating an account on GitHub.

github.com

Portainer를 설치하기 앞서, Docker를 설치해야 한다.


Docker 설치

개발사에서 알려주는 설치법이 가장 안정하니 아래의 링크를 통해 Docker를 설치하면 된다.

https://docs.docker.com/engine/install/centos/

 

Install Docker Engine on CentOS

Learn how to install Docker Engine on CentOS. These instructions cover the different installation methods, how to uninstall, and next steps.

docs.docker.com


Portainer 설치

개발사에서 알려주는 설치법은 다음과 같다.

https://docs.portainer.io/start/install-ce/server/docker/linux

 

Install Portainer CE with Docker on Linux - Portainer Documentation

de5b28eb2fa9 portainer/portainer-ce:latest "/portainer" 2 weeks ago Up 9 days 0.0.0.0:8000->8000/tcp, :::8000->8000/tcp, 0.0.0.0:9443->9443/tcp, :::9443->9443/tcp portainer

docs.portainer.io

 

Portainer를 사용하면, Docker 컨테이너 관리부터 컨테이너 내부에 들어가 명령어, 컨테이너 로그들을 쉽게 확인할 수 있다.
Portainer는 Docker 관리 툴 중, 가장 유명한 툴일 것이다.

 

Comments