1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-20 15:58:06 +02:00

Merge pull request #1 from overleaf/msm-add-mongo-shell-script

Added bin/mongo to open mongo shell
This commit is contained in:
Shane Kilkelly 2020-07-15 09:24:50 +01:00 committed by GitHub
commit d195dde8f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
bin/mongo Executable file
View file

@ -0,0 +1,9 @@
#! /usr/bin/env bash
set -euo pipefail
function __main__() {
exec ./bin/docker-compose exec mongo mongo
}
__main__ "$@"