From 07045974eae7c0e91d3c4aa52f5ec8367448e0a1 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sun, 23 Aug 2015 21:38:34 -0400 Subject: [PATCH] Fix command for running custom storageEngine on mongodb --- mongo/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongo/content.md b/mongo/content.md index 58a0cfa52..55f891a0d 100644 --- a/mongo/content.md +++ b/mongo/content.md @@ -37,7 +37,7 @@ See the [official docs](http://docs.mongodb.org/manual/) for infomation on using Just add the `--storageEngine` argument if you want to use the WiredTiger storage engine in MongoDB 3.0 and above without making a config file. Be sure to check the [docs](http://docs.mongodb.org/manual/release-notes/3.0-upgrade/#change-storage-engine-to-wiredtiger) on how to upgrade from older versions. ```console -$ docker run --name some-mongo -d mongo --storageEngine=wiredTiger +$ docker run --name some-mongo -d mongo --storageEngine wiredTiger ``` ## Where to Store Data