Redis 컨테이너 실행하기
* detached mode (백그라운드모드)로 : -d 옵션
* 컨테이너 포트를 호스트의 포트로 연결 : -p 옵션
# docker run -d -p 1234:6379 redis
* 없으니까 바로 다운로드 받고 실행됨
* -p 옵션을 이용: 호스트의 1234포트를 컨테이너의 6379포트로 연결, localhost의 1234포트로 접속하면 하면 redis를 사용 가능
~$ docker run -d -p 1234:6379 redis
Unable to find image 'redis:latest' locally
latest: Pulling from library/redis
065132d9f705: Pull complete
be9835c27852: Pull complete
f4a0d1212c38: Pull complete
43be9e9f0fb9: Pull complete
a1bca8e532ec: Pull complete
382eae952932: Pull complete
Digest: sha256:ebb396dc3ac00e8eb4a64c1c022ef41ef16801f31ff98b16916a77fdc7252e67
Status: Downloaded newer image for redis:latest
6c9e33af12720e6d5ad70506e709d7bfddc621ae9887270dd6da4be93fdea964
* 텔넷으로 연결해보기
~$ telnet localhost 1234
Trying ::1...
Connected to localhost.
Escape character is '^]'.
#아래와같이 명령어를 입력해보자.
set mykey hello
+OK
get mykey
$5
hello
'Docker' 카테고리의 다른 글
ENTRYPOINT_컨테이너가 시작되었을 때 스크립트 혹은 명령을 실행 (0) | 2020.08.26 |
---|---|
docker network 생성 (0) | 2020.08.26 |
VMware Workstation and Hyper-V are not compatible. Remove the Hyper-V role from the system before running VMware Workstation (0) | 2020.08.26 |
docker를 이용한 파이썬 웹 개발환경 세팅 (0) | 2020.08.26 |
windows 10 docker에서 우분투 다운로드 (0) | 2020.08.25 |