1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 23:38:06 +02:00

added bin/mongo to open mongo shell

This commit is contained in:
Miguel Serrano 2020-07-14 18:28:23 +02:00
parent b1f3b5c83c
commit 52d3cf5ca4

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__ "$@"