웹 프로그래밍

[배포해보기 (3)] Portainer로 Docker Container를 GUI로 생성하기

728x90
반응형

portainer는 docker를 GUI로 바꿔주는 소프트웨어이다. 

 

https://hub.docker.com/

 

Docker Hub

We and third parties use cookies or similar technologies ("Cookies") as described below to collect and process personal data, such as your IP address or browser information. You can learn more about how this site uses Cookies by reading our privacy policy

hub.docker.com

도커허브에 접속해 portainer를 검색 > portainer-ce를 사용 (community edition)

 

ssh로 vps접근후 아래 명령

docker volume create portainer_data
docker run -d -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce

8000포트는 사용하지 않을 것. (9000번 포트로 연결할 것이다.)

 

docker container ls

로 확인해보면 구동되는거 확인 가능

 

9000포트 사용하도록 해놨으니까 브라우저에서 빌린 서버 주소로 x.x.x.x:9000 접근해보자. 패스워드 만들어 Docker 선택후 connect.

 

728x90
반응형