An image containing aws-cli, oc and ssh commands
3.1K
This docker image contains aws-cli, oc command and ssh. The main purpose of this is to use these tools to backup from service like database and send it to s3 bucket
The Dockerfile:
ARG AWS_VERSION=2.11.18
# Move oc to aws-cli image
FROM amazon/aws-cli:${AWS_VERSION}
ARG OC_VERSION=4.3
RUN yum install -y tar rsync openssh-clients && yum clean all
RUN curl -L https://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable-${OC_VERSION}/openshift-client-linux.tar.gz -o /tmp/oc.tar.gz \
&& tar xzf /tmp/oc.tar.gz -C /usr/local/bin \
&& rm /tmp/oc.tar.gz \
&& rm /usr/local/bin/kubectl
ENTRYPOINT ["/bin/bash"]
Content type
Image
Digest
sha256:299367caa…
Size
177 MB
Last updated
about 2 years ago
docker pull anvaari/backup-tool:0.1