Skip to content

Commit

Permalink
Add age tools and mongo_manage.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuznet committed Oct 9, 2023
1 parent 1346e81 commit b63d0b7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/mongotools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,10 @@ WORKDIR $WDIR/bin
ENV SOPS_VER=v3.8.0
RUN curl -ksLO https://github.com/getsops/sops/releases/download/${SOPS_VER}/sops-${SOPS_VER}.linux.amd64
RUN mv sops-${SOPS_VER}.linux.amd64 sops && chmod +x sops
# download age tool
ENV AGE_VER=v1.1.1
RUN curl -ksLO https://github.com/FiloSottile/age/releases/download/v1.1.1/age-${AGE_VER}-linux-amd64.tar.gz
RUN tar xfz age-${AGE_VER}-linux-amd64.tar.gz
RUN mv age agetools && mv agetools/age . && mv agetools/age-keygen . && rm -rf age-${AGE_VER}-linux-amd64.tar.gz agetools
# download mongo_manage.sh script
RUN curl -ksLO https://gist.githubusercontent.com/vkuznet/718e35f3782da467b1f86a82616b7ce4/raw/7f00f0d7dbf48e48d59d6cd706819ac69375e83e/mongo_manage.sh && chmod +x mongo_manage.sh

0 comments on commit b63d0b7

Please sign in to comment.