We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7351893 commit 0660f39Copy full SHA for 0660f39
1 file changed
docker/mongo/etc/mongod.conf.orig
@@ -0,0 +1,41 @@
1
+# mongod.conf
2
+
3
+# for documentation of all options, see:
4
+# http://docs.mongodb.org/manual/reference/configuration-options/
5
6
+# Where and how to store data.
7
+storage:
8
+ dbPath: /var/lib/mongodb
9
+ journal:
10
+ enabled: true
11
+# engine:
12
+# mmapv1:
13
+# wiredTiger:
14
15
+# where to write logging data.
16
+systemLog:
17
+ destination: file
18
+ logAppend: true
19
+ path: /var/log/mongodb/mongod.log
20
21
+# network interfaces
22
+net:
23
+ port: 27017
24
+ bindIp: 127.0.0.1
25
26
27
+#processManagement:
28
29
+#security:
30
31
+#operationProfiling:
32
33
+#replication:
34
35
+#sharding:
36
37
+## Enterprise-Only Options:
38
39
+#auditLog:
40
41
+#snmp:
0 commit comments