mirror of
https://github.com/miloszowi/everyone-mention-telegram-bot.git
synced 2025-05-20 17:24:06 +00:00
8 lines
282 B
Plaintext
8 lines
282 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [ -f docker/config/app.env ]
|
||
|
then
|
||
|
source docker/config/app.env
|
||
|
fi
|
||
|
|
||
|
docker-compose exec database mongosh --port $MONGODB_PORT --host $MONGODB_HOSTNAME --username $MONGODB_USERNAME --password $MONGODB_PASSWORD --authenticationDatabase admin $MONGODB_DATABASE
|