Skip to content

Instantly share code, notes, and snippets.

@mikedatsko
Created October 22, 2019 05:51
Show Gist options
  • Save mikedatsko/70bcb0dd342020eb32f61c9a36b40aa3 to your computer and use it in GitHub Desktop.
Save mikedatsko/70bcb0dd342020eb32f61c9a36b40aa3 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
echo '== Creating application user and db'
mongo ${APP_MONGO_DB} \
--host localhost \
--port ${MONGO_PORT} \
-u ${MONGO_ROOT_USER} \
-p ${MONGO_ROOT_PASS} \
--authenticationDatabase admin \
--eval "db.createUser({user: '${APP_MONGO_USER}', pwd: '${APP_MONGO_PASS}', roles:[{role:'dbOwner', db: '${APP_MONGO_DB}'}]});"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment