Sign inSign up

zeitgeist/docker-cli53

By zeitgeist

Updated about 11 years ago

Docker container for cli53, a command line tool to administer Amazon Route 53 DNS

Image
0

1.7K

zeitgeist/docker-cli53 repository overview

zeitgeist/docker-cli53

cli53 in a Docker container.

Requirements

  • Docker 1.5+ (previous versions may work fine, but I haven't tried)

Installation

Get the trusted build on the docker hub:

$ docker pull zeitgeist/docker-cli53

or download and compile the source yourself from Github:

$ git clone https://github.com/alexzeitgeist/docker-cli53.git
$ cd docker-cli53
$ docker build -t zeitgeist/docker-cli53 .

Usage

cli53 is a command line tool to administer the Amazon Route 53 DNS service. Related instructions can be found on its project page. You need to pass your Amazon AWS credentials to the container either through environment variables as AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY, or by sharing your local ~/.boto file as a volume. Example:

$ docker run --rm \
  -e AWS_ACCESS_KEY_ID="your aws access key" \
  -e AWS_SECRET_ACCESS_KEY="your aws secret key" \
  zeitgeist/docker-cli53 list
$ docker run --rm \
  -v ~/.boto:/home/user/.boto \
  zeitgeist/docker-cli53 list

Tag summary

Content type

Image

Digest

sha256:a579bf70b

Size

63.6 MB

Last updated

about 11 years ago

docker pull zeitgeist/docker-cli53