mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4d4d1e7f82
Signed-off-by: Kai Qiang Wu(Kennan) <wkqwu@cn.ibm.com>
33 lines
792 B
Markdown
33 lines
792 B
Markdown
<!--[metadata]>
|
|
+++
|
|
draft = true
|
|
+++
|
|
<![end-metadata]-->
|
|
|
|
|
|
|
|
This is an initial attempt to make it easier to test the examples in the https.md
|
|
doc.
|
|
|
|
At this point, it has to be a manual thing, and I've been running it in boot2docker.
|
|
|
|
My process is as following:
|
|
|
|
$ boot2docker ssh
|
|
$$ git clone https://github.com/docker/docker
|
|
$$ cd docker/docs/articles/https
|
|
$$ make cert
|
|
|
|
lots of things to see and manually answer, as openssl wants to be interactive
|
|
|
|
**NOTE:** make sure you enter the hostname (`boot2docker` in my case) when prompted for `Computer Name`)
|
|
|
|
$$ sudo make run
|
|
|
|
Start another terminal:
|
|
|
|
$ boot2docker ssh
|
|
$$ cd docker/docs/articles/https
|
|
$$ make client
|
|
|
|
The last will connect first with `--tls` and then with `--tlsverify`, both should succeed.
|