Porttainer - NAS용 Docker 컨테이너 관리자
Porttainer는 시스템에서 실행 중인 도커 컨테이너를 쉽게 관리할 수 있게 해주는 응용 프로그램입니다. 컨테이너를 실행하는 NAS 또는 동일한 작업을 수행하는 홈 서버에 추가할 수 있는 훌륭한 도구입니다. 실행 중이거나 관심이 있는 경우 Kubernetes 관리에도 사용할 수 있습니다. 내가 좋아하는 일부 기능은 다음과 같습니다.
전제 조건 📃
- Download Docker from Package Center
- In DSM head over to Package Center
- Search for Docker
- Install
- Enable SSH for your NAS
- If you don’t have SSH enabled follow this .
폴더 구조 만들기 📂
In DSM, open up the File Station:
- Installing docker creates a
docker
folder at the root of your volume - Create a new folder in the
docker
folder for Portainer- I always create the folder based on the name of the image/container I’m setting up, in this case,
portainer
- I always create the folder based on the name of the image/container I’m setting up, in this case,
SSH로 NAS에 연결하고 이미지를 실행하세요 📦
Using your preferred terminal SSH into your NAS, once logged in run the following:
%USERNAME%@%NAS_NAME%:~$sudo su -
You may be prompted to re-enter your password and you should do so. This command puts us in the root environment with the root user. Your terminal windows should now look like this:
root@%NAS_NAME%:~#
Copy and paste the following snippet in your terminal
root@%NAS_NAME%:~# docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v /volume1/docker/portainer:/data portainer/portainer-ce@latest
If you have any other containers already setup that may be using ports 8000
or 9000
make sure to change that before executing the Docker run command. Now we just have to set up the portainer instance in the web interface and we’ll be all set!
포테이너 설정 🛳
In your browser navigate to http://%SYNOLOGY_IP_ADDRESS%:9000
. Here we will be prompted to create a new user for Portainer.
- Create your username
- Create a new password
- Confirm your password
- Uncheck
Allow collection...
- Click
Create User
Once your user is created you will be brought to a screen to choose which container environment we want to manage with Portainer.
- Select Docker (or if you are using this to manage Kubernetes then choose that one)
- Click
Connect
Reference
이 문제에 관하여(Porttainer - NAS용 Docker 컨테이너 관리자), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/chrisotto/portainer-docker-container-manager-for-your-nas-1130텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)