Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit 99405be

Browse files
author
Ruben Daniels
committed
Merge pull request #115 from c9/mongodb-fix
Fixing table on mongodb page
2 parents 8b7f462 + a1b0305 commit 99405be

File tree

1 file changed

+28
-6
lines changed

1 file changed

+28
-6
lines changed

src/persistence/setting_up_mongodb.md

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,34 @@ You can start mongodb by running the `mongod` script on your project root:<br/>
3131

3232
### MongoDB parameters used:
3333

34-
| Parameter | Description |
35-
| ------------------------------ | ----------------------------------------------------------------------------------------------- |
36-
| `--dbpath=data` | Because it defaults to /var/db which isn't accessible) |
37-
| `--nojournal` | Because mongodb usually pre-allocates 2 GB journal file (which exceeds Cloud9 disk space quota) |
38-
| `--bind_ip=$IP` | Because you can't bind to 0.0.0.0) |
39-
| `--rest` | Runs on default port 28017 |
34+
<div markdown="1">
35+
<table class="table table-striped table-bordered">
36+
<thead>
37+
<tr>
38+
<th>Parameter</td>
39+
<th>Description</td>
40+
</tr>
41+
</thead>
42+
<tbody>
43+
<tr>
44+
<td>--dbpath=data</td>
45+
<td>Because it defaults to /var/db which isn't accessible)</td>
46+
</tr>
47+
<tr>
48+
<td>--nojournal</td>
49+
<td>Because mongodb usually pre-allocates 2 GB journal file (which exceeds Cloud9 disk space quota)</td>
50+
</tr>
51+
<tr>
52+
<td>--bind_ip=$IP</td>
53+
<td>Because you can't bind to 0.0.0.0)</td>
54+
</tr>
55+
<tr>
56+
<td>--rest</td>
57+
<td>Runs on default port 28017</td>
58+
</tr>
59+
</tbody>
60+
</table>
61+
</div>
4062

4163
## Drivers
4264

0 commit comments

Comments
 (0)