mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
Previously, the `ssh://` helper was only mentioned in `engine/security/index.md`. The `ssh://` helper is now documented in "Protect the Docker daemon socket" (`engine/security/protect-access.md`, nee `engine/security/https.md`). Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
11 lines
306 B
Bash
Executable File
11 lines
306 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "#!/bin/sh"
|
|
cat ../protect-access.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'
|