Questions tagged [mongo-express]
66 questions
0
votes
1 answer
Mongo-express | Patch file found for package mongodb-query-parser
I am trying to get rid of the following error message.
patch-package 6.2.2
Applying patches...
Error: Patch file found for package mongodb-query-parser which is not present at node_modules/mongodb-query-parser
This message appears when I try to…

freshi65
- 3
- 3
0
votes
1 answer
MongoExpress not reading login/password from .env file
I am using docker-compose where I set the environmental variables to be:
environment:
- ME_CONFIG_BASICAUTH_USERNAME=${MONGOEXPRESS_LOGIN}
- ME_CONFIG_BASICAUTH_PASSWORD=${MONGOEXPRESS_PASSWORD}
only when I do:
environment:
-…

yuuwe
- 1
0
votes
1 answer
How to attach persistent volume in docker-compose file for mongodb?
I have a docker-compose file that will bring up mongo and mongo-express containers in the same network "mynet".
I have created a network by:
docker network create mynet
I have created a volume named "demo-vol" externally by docker command.
docker…

Thra
- 87
- 2
- 11
0
votes
0 answers
Mongobd/docker-compose: TypeError: Cannot read property 'listDatabases' of undefined in my docker image but not a colleague's image
Hi I'm trying to run mongodb to backup some files using docker images (bitnami mongodb:4.0. and mongo-express). These are specified by this docker-compose file:
version: '3.5'
services:
mongodb-primary:
image: 'bitnami/mongodb:4.0'
…

ewartj
- 1
0
votes
1 answer
Mongo Express server listening at http://0.0.0.0:8081
version: "3.3"
services:
mongodb:
image: mongo:latest
container_name: "mongo"
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: rootpassword
ports:
-…

choopau
- 2,209
- 5
- 21
- 28