llmongodb/docker-compose/mongo.sh
Michele e1f9da40e4 - build automatico con tag versione
- docker-compose per ambiente di test
2018-10-23 09:26:55 +02:00

9 lines
149 B
Bash
Executable file

#!/bin/bash
if [ -z $1 ]; then
HOST=192.168.0.1:27017
else
HOST=${1}
fi
docker run --rm -it mikif70/mongotools:3.4.7 mongo ${HOST}