mirror of
https://github.com/docker/docs.git
synced 2026-04-01 00:38:52 +07:00
Resetting v1.11 branch to be empty; will use rendered HTML
This commit is contained in:
@@ -1,14 +0,0 @@
|
||||
---
|
||||
{}
|
||||
---
|
||||
|
||||
FROM debian
|
||||
|
||||
RUN apt-get update && apt-get install -yq openssl
|
||||
|
||||
ADD make_certs.sh /
|
||||
|
||||
|
||||
WORKDIR /data
|
||||
VOLUME ["/data"]
|
||||
CMD /make_certs.sh
|
||||
@@ -1,29 +0,0 @@
|
||||
---
|
||||
draft: true
|
||||
---
|
||||
|
||||
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.
|
||||
@@ -1,27 +0,0 @@
|
||||
---
|
||||
{}
|
||||
---
|
||||
|
||||
#!/bin/sh
|
||||
openssl genrsa -aes256 -out ca-key.pem 2048
|
||||
openssl req -new -x509 -days 365 -key ca-key.pem -sha256 -out ca.pem
|
||||
openssl genrsa -out server-key.pem 2048
|
||||
openssl req -subj "/CN=$HOST" -new -key server-key.pem -out server.csr
|
||||
echo subjectAltName = IP:$YOUR_PUBLIC_IP > extfile.cnf
|
||||
openssl x509 -req -days 365 -in server.csr -CA ca.pem -CAkey ca-key.pem -CAcreateserial -out server-cert.pem -extfile extfile.cnf
|
||||
openssl genrsa -out key.pem 2048
|
||||
openssl req -subj '/CN=client' -new -key key.pem -out client.csr
|
||||
echo extendedKeyUsage = clientAuth > extfile.cnf
|
||||
openssl x509 -req -days 365 -in client.csr -CA ca.pem -CAkey ca-key.pem -CAcreateserial -out cert.pem -extfile extfile.cnf
|
||||
rm -v client.csr server.csr
|
||||
chmod -v 0400 ca-key.pem key.pem server-key.pem
|
||||
chmod -v 0444 ca.pem server-cert.pem cert.pem
|
||||
# docker -d --tlsverify --tlscacert=ca.pem --tlscert=server-cert.pem --tlskey=server-key.pem -H=0.0.0.0:7778
|
||||
# docker --tlsverify --tlscacert=ca.pem --tlscert=cert.pem --tlskey=key.pem -H=$HOST:7778 version
|
||||
mkdir -pv ~/.docker
|
||||
cp -v {ca,cert,key}.pem ~/.docker
|
||||
export DOCKER_HOST=tcp://$HOST:7778 DOCKER_TLS_VERIFY=1
|
||||
# docker ps
|
||||
export DOCKER_CERT_PATH=~/.docker/zone1/
|
||||
# docker --tlsverify ps
|
||||
# curl https://$HOST:7778/images/json --cert ~/.docker/cert.pem --key ~/.docker/key.pem --cacert ~/.docker/ca.pem
|
||||
@@ -1,14 +0,0 @@
|
||||
---
|
||||
{}
|
||||
---
|
||||
|
||||
#!/bin/sh
|
||||
|
||||
echo "#!/bin/sh"
|
||||
cat ../https.md | awk '{if (sub(/\\$/,"")) printf "%s", $0; else print $0}' \
|
||||
| grep ' $ ' \
|
||||
| sed 's/ $ //g' \
|
||||
| sed 's/2375/7777/g' \
|
||||
| sed 's/2376/7778/g' \
|
||||
| sed 's/^docker/# docker/g' \
|
||||
| sed 's/^curl/# curl/g'
|
||||
Reference in New Issue
Block a user