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

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

License

Notifications You must be signed in to change notification settings

docker-archive/dockercloud-authorizedkeys

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages