Base docker image to run a MongoDB database server
To create the image webcastio/mongodb, execute the following command on the webcastio-mongodb folder:
docker build -t webcastio/mongodb .
Run the following command to start MongoDB:
docker run -d -p 27017:27017 -p 28017:28017 webcastio/mongodb
The first time that you run your container, a new random password will be set. To get the password, check the logs of the container by running:
docker logs <CONTAINER_ID>
You will see an output like the following:
========================================================================
You can now connect to this MongoDB server using:
mongo admin -u admin -p 5elsT6KtjrqV --host <host> --port <port>
Please remember to change the above password as soon as possible!
========================================================================
In this case, 5elsT6KtjrqV is the password set.
You can then connect to MongoDB:
mongo admin -u admin -p 5elsT6KtjrqV
Done!
If you want to use a preset password instead of a randomly generated one, you can
set the environment variable MONGODB_PASS to your specific password when running the container:
docker run -d -p 27017:27017 -p 28017:28017 -e MONGODB_PASS="mypass" webcastio/mongodb
You can now test your new admin password:
mongo admin -u admin -p mypass
curl --user admin:mypass --digest http://localhost:28017/
If you want run MongoDB without password you can set tge environment variable AUTH to specific if you want password or not when running the container:
docker run -d -p 27017:27017 -p 28017:28017 -e AUTH=no webcastio/mongodb
By default is "yes".
For Axisto-live we need a set database for the environment you are running and a db user who has readWrite permissions on that db. Run the docker img with the extra environment variables of $DB_NAME, $DB_USER and $DB_PASS.
docker run -d -p 27017:27017 -p 28017:28017 -e DB_NAME="presenter-staging" -e DB_USER="axisto" -e DB_PASS="secret" webcastio/mongodb
e.g. You can now connect to the db [presenter-staging] as the user [axisto] with the password [secret]
Content type
Image
Digest
sha256:481862fb1…
Size
151 MB
Last updated
almost 11 years ago
docker pull webcastio/mongodb