Files
docker-docs/_includes/content/ssh/ssh-gen-keys.md
Victoria Bialas e552c02d7b WIP: add Cloud link to Azure topics (#2713)
* add Cloud link to Azure topics

WIP: 1st draft includes, tabs re: SSH key topics

adding more Azure Cloud content and SSH includes

copyedits

cloud azure, aws topics organization, videos

incorporated review comments

copyedits, colour-coded TBD's

copyedits to make create a swarm w/AWS and Azure consistent

updated links to use new titles

added SSH key setup to the Swarm overview list of links

updated link services titles

add ssh to glossary, note autoredeploy limitations

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* screen snaps, updates per latest on staging

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added link

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* resolved conflicts in TOC

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added Azure accept EULA/enable subscription, more steps, snaps

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* fixed the comments to not break numbering

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* new snaps and review comments incorporated from Alberto and Ryan

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added screen snaps, review comments, more steps

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added screen snaps, detail to Azure create swarm

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* new snap showing linked AWS as provider

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* AWS screen snaps and detailed steps

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* AWS swarm name rules clarification

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added x-refs to edition topics on config per reviews

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added connect screen snap w/production commands, AWS pricing

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added more code examples and clarification to swarm connect

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added more code examples for Azure and AWS

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-05-02 13:28:55 -07:00

2.8 KiB

  • Mac
  • Windows
  • Linux

{% capture mac-content-gen %} 1. Open a command-line terminal.
  1. Paste the text below, substituting in your GitHub email address.

    ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
    

    This creates a new SSH key, using the provided email as a label.

    Generating public/private rsa key pair.
    
  2. When prompted with "Enter a file in which to save the key", press the Return key (Enter) to accept the default location.

    Enter a file in which to save the key (/Users/you/.ssh/id_rsa):
    
  3. At the prompt, type a secure passphrase, and re-enter as prompted.

    Enter passphrase (empty for no passphrase):
    Enter same passphrase again:
    

{% endcapture %} {{ mac-content-gen | markdownify }}


{% capture win-content-gen %} 1. Open Git Bash.
  1. Paste the text below, substituting in your GitHub email address.

    ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
    

    This creates a new SSH key, using the provided email as a label.

    Generating public/private rsa key pair.
    
  2. When prompted with "Enter a file in which to save the key", press the Return key (Enter) to accept the default location.

    Enter a file in which to save the key (c/Users/you/.ssh/id_rsa):
    
  3. At the prompt, type a secure passphrase, and re-enter as prompted.

    Enter passphrase (empty for no passphrase):
    Enter same passphrase again:
    

{% endcapture %} {{ win-content-gen | markdownify }}


{% capture linux-content-gen %} 1. Open a command-line terminal.
  1. Paste the text below, substituting in your GitHub email address.

    ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
    

    This creates a new SSH key, using the provided email as a label.

    Generating public/private rsa key pair.
    
  2. When prompted with "Enter a file in which to save the key", press the Return key (Enter) to accept the default location.

    Enter a file in which to save the key (/home/you/.ssh/id_rsa):
    
  3. At the prompt, type a secure passphrase, and re-enter as prompted.

    Enter passphrase (empty for no passphrase):
    Enter same passphrase again:
    

{% endcapture %} {{ linux-content-gen | markdownify }}