Docker

[Docker] Wetty 를 이용하여 원격에서 브라우저로 ssh를 사용하기

IT-PAPA 2023. 2. 10. 06:30
728x90
반응형

대부분의 사용자는 putty, xshell, secureCRT, terminus 등의 프로그램을 이용하여, ssh 접속을 하곤 한다.

하지만 아래 명령어 한 줄만 실행하면, 어디서든 브라우저에서 접속할 수 있는 편한 docker 컨테이너가 있다.

집이든 다른 cloud 서버든 port forwarding 해줘야 하는 환경이면 필수로 설정하길 바란다.

 

 

docker 명령어

docker run --rm -p 3000:3000 wettyoss/wetty --ssh-host=[YOUR-IP]
master@master:~/docker2/docker/docker/wetty$ docker run --rm -p 3000:3000 wettyoss/wetty --ssh-host=192.168.87.128
Unable to find image 'wettyoss/wetty:latest' locally
latest: Pulling from wettyoss/wetty
213ec9aee27d: Pull complete 
f379b689aea3: Pull complete 
fe299d5780c0: Pull complete 
c34a027bbf26: Pull complete 
61cefbfca1a9: Pull complete 
e2c1a789ace8: Pull complete 
f7b24f077e5d: Pull complete 
2baf0684399d: Pull complete 
d7f3ac6be6ef: Pull complete 
Digest: sha256:45a22660cfc84f47bcdb4322e82b194b64c4ab449ab80b42712b7abe4402b10d
Status: Downloaded newer image for wettyoss/wetty:latest
yarn run v1.22.19
$ NODE_ENV=production node . --ssh-host=192.168.87.128

portainer 접속 화면
portainer 접속 화면

 

반응형

 

wetty 접속 URL

http://[서버 IP]:3000/wetty/ssh/계정명

wetty 접속 URL
wetty 접속 URL

 

참고

butlerx/wetty: Terminal in browser over http/https. (Ajaxterm/Anyterm alternative, but much better) (github.com)

 

GitHub - butlerx/wetty: Terminal in browser over http/https. (Ajaxterm/Anyterm alternative, but much better)

Terminal in browser over http/https. (Ajaxterm/Anyterm alternative, but much better) - GitHub - butlerx/wetty: Terminal in browser over http/https. (Ajaxterm/Anyterm alternative, but much better)

github.com

 

[Docker] 도커의 모든 것, 도커 추천 이미지!!! (tistory.com)

 

[Docker] 도커의 모든 것, 도커 추천 이미지!!!

필자는 이때까지 docker로 구축한 모든 목록을 이 블로그에 담았다. 앞으로도 이 페이지는 필자가 도커를 구축할 때마다 업데이트하려고 하니, 즐겨찾기 해두면 나쁘지 않을 거 같다. 유용하게 사

betwe.tistory.com

 

728x90
반응형
LIST