Skip to content

Commit

Permalink
Get latest mongo from the mongodb website.
Browse files Browse the repository at this point in the history
Apparently, `mongo-tools` was removed from the apt repositories due to some security issue 
involving BRITNEY FILES, so I guess now we have to do this for a bit.
  • Loading branch information
lemonsaurus authored Aug 28, 2021
1 parent 159b941 commit 9010f01
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ RUN pip install -U pip \
ENV PATH="${PATH}:/root/.poetry/bin"

# Install mongotools, used for getting mongo backups
# and redis-tools, used for redis backups.
RUN apt-get install -y mongo-tools redis-tools
RUN wget https://fastdl.mongodb.org/tools/db/mongodb-database-tools-ubuntu2004-x86_64-100.5.0.deb -O mongo-tools.deb \
&& apt install -y ./mongo-tools.deb

# Install redis-tools, used for redis backups.
RUN apt install -y redis-tools

# Install the Postgres 13 client, needed for pg_dumpall
# And MariaDB client for mysqldump
Expand Down

0 comments on commit 9010f01

Please sign in to comment.