trinitronx/docker-cli53

By trinitronx

Updated about 10 years ago

cli53 in a Docker container.

Image
0

178

trinitronx/docker-cli53 repository overview

trinitronx/docker-cli53

cli53 in a Docker container. New GoLang build of cli53, forked from original build of alexzeitgeist/docker-cli53.

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 trinitronx/docker-cli53

or download and compile the source yourself from Github:

$ git clone https://github.com/trinitronx/docker-cli53.git
$ cd docker-cli53
$ docker build -t trinitronx/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 ~/.aws/credentials 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" \
  trinitronx/docker-cli53 list
$ docker run --rm \
  -v ~/.aws:/home/user/.aws \
  trinitronx/docker-cli53 list

Tag summary

Content type

Image

Digest

Size

86.7 MB

Last updated

about 10 years ago

docker pull trinitronx/docker-cli53