Docker container for cli53, a command line tool to administer Amazon Route 53 DNS
1.7K
cli53 in a Docker container.
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 .
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
Content type
Image
Digest
sha256:a579bf70b…
Size
63.6 MB
Last updated
about 11 years ago
docker pull zeitgeist/docker-cli53