Skip to content
This repository has been archived by the owner on Jan 22, 2020. It is now read-only.

Latest commit

 

History

History
31 lines (19 loc) · 949 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 949 Bytes

authorizedkeys

Deploy to Docker Cloud

Adds a user public SSH key to the host's ~/.ssh/authorized_keys using a container

Usage

docker run -v /root:/user -e AUTHORIZED_KEYS="`cat ~/.ssh/id_rsa.pub`" dockercloud/authorizedkeys

With multiple keys:

docker run -v /root:/user -e AUTHORIZED_KEYS="`cat ~/.ssh/id_rsa1.pub`,`cat ~/.ssh/id_rsa2.pub`" dockercloud/authorizedkeys

Adding the key to a user different than root:

docker run -v /home/myuser:/user -e AUTHORIZED_KEYS="`cat ~/.ssh/id_rsa.pub`" dockercloud/authorizedkeys

Usage in Docker Cloud

We recommend using this image in Docker Cloud as follows:

authorizedkeys:
  image: dockercloud/authorizedkeys
  deployment_strategy: every_node
  autodestroy: always
  environment:
    - AUTHORIZED_KEYS=ssh-rsa AAAAB3NzaC1y....
  volumes:
    - /root:/user:rw