Skip to content

Instantly share code, notes, and snippets.

@yukinagae
Created March 16, 2015 09:46
Show Gist options
  • Save yukinagae/4c217a61cd01eeddc9c9 to your computer and use it in GitHub Desktop.
Save yukinagae/4c217a61cd01eeddc9c9 to your computer and use it in GitHub Desktop.
Windowsでdockerを動かしてみる ref: http://qiita.com/yukinagae/items/f39ed022fb34d087bb49
192.168.59.103
connecting...
## .
## ## ## ==
## ## ## ## ===
/""""""""""""""""\___/ ===
~~~ {~~ ~~~~ ~~~ ~~~~ ~~ ~ / ===- ~~~
\______ o __/
\ \ __/
\____\______/
_ _ ____ _ _
| |__ ___ ___ | |_|___ \ __| | ___ ___| | _____ _ __
| '_ \ / _ \ / _ \| __| __) / _` |/ _ \ / __| |/ / _ \ '__|
| |_) | (_) | (_) | |_ / __/ (_| | (_) | (__| < __/ |
|_.__/ \___/ \___/ \__|_____\__,_|\___/ \___|_|\_\___|_|
Boot2Docker version 1.5.0, build master : a66bce5 - Tue Feb 10 23:31:27 UTC 2015
Boot2Docker StartDocker version 1.5.0, build a8a31ef
docker@boot2docker:~$
docker@boot2docker:~$ docker version
docker@boot2docker:~$ docker version
Client version: 1.5.0
Client API version: 1.17
Go version (client): go1.4.1
Git commit (client): a8a31ef
OS/Arch (client): linux/amd64
Server version: 1.5.0
Server API version: 1.17
Go version (server): go1.4.1
Git commit (server): a8a31ef
docker@boot2docker:~$ docker pull redis
docker@boot2docker:~$ docker pull redis
511136ea3c5a: Pull complete
36669626e49c: Pull complete
d5570ef1464a: Pull complete
6b2cc2ba2d5a: Pull complete
1d1bba02d88c: Pull complete
721273364de8: Pull complete
5c38d7c2a1e4: Pull complete
3efd327b4a2f: Pull complete
2e1febeacb96: Pull complete
be58485dad8d: Pull complete
bcfcf50355c9: Pull complete
7059bb73cc90: Pull complete
aee6718e9f51: Pull complete
60a728f7bfed: Pull complete
b9f4429d7461: Pull complete
f94bd3b706e9: Pull complete
ef119c54808b: Pull complete
53b6894a9c8a: Pull complete
redis:latest: The image you are pulling has been verified. Important: image verification is a tech preview feature and should not be relied on to provide security.
Status: Downloaded newer image for redis:latest
docker@boot2docker:~$
docker@boot2docker:~$ docker run -p 6379:6379 -d redis
docker@boot2docker:~$ docker run -p 6379:6379 -d redis
299763490f3776420dbabbcabd78bac1644e837d9049536824d4c5cf19c5fb8e
docker@boot2docker:~$
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\john>telnet 192.168.59.103 6379
set mykey "hoge"
+OK
get mykey
$4
hoge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment