docker-cli53
cli53 in a Docker container.
178
cli53 in a Docker container. New GoLang build of cli53, forked from original build of alexzeitgeist/docker-cli53.
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 .
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
Content type
Image
Digest
Size
86.7 MB
Last updated
about 10 years ago
docker pull trinitronx/docker-cli53