Browse Source

adding info on how to get authentication credentials from docker logs, adding tests.

master
Charles Reid 8 years ago
parent
commit
06d2d1127f
  1. 27
      README.md
  2. 35
      test/test_mongo_insert.py
  3. 14
      test/test_mongo_retrieve.py

27
README.md

@ -1,3 +1,30 @@ @@ -1,3 +1,30 @@
# d-mongodb
This repo contains files for creating a MongoDB Docker container.
This uses the image from [frodenas on github](https://github.com/frodenas/docker-mongodb/).
The main change is that we are adding a build script and a run script,
and a few tweaks to the Dockerfile.
To get the MongoDB authentication credentials for the docker container,
check the logs using Docker - the credentials are printed to the logs.
```
$ docker logs inspiring_malachai
```
The remainder of the document that follows is from
[frodenas on github](https://github.com/frodenas/docker-mongodb/).
<br />
<br />
<br />
<br />
<br />
<br />
----
# MongoDB Dockerfile
A Dockerfile that produces a Docker Image for [MongoDB](http://www.mongodb.org/).

35
test/test_mongo_insert.py

@ -0,0 +1,35 @@ @@ -0,0 +1,35 @@
from pymongo import MongoClient
import random
client = MongoClient('localhost', 27017)
db = client.test_database
collection = db.test_collection
docs = [{
'timestamp' : '2017-04-11 11:04:12',
'bssid' : 'DEADBEEFSFUOESIEWR',
'channel' : random.randint(0,100),
'ssid' : 'wiiiiiifi',
'strength' : -24,
'encryption' : 'WPA'
},
{
'timestamp' : '2017-04-11 11:01:12',
'bssid' : 'BEEOIEUDSJFLKSDJFF',
'channel' : random.randint(0,100),
'ssid' : 'iurtiruyiuyrwe',
'strength' : -20,
'encryption' : 'WPA'
},
{
'timestamp' : '2017-04-11 11:24:12',
'bssid' : 'BEEF2DJFSKJFLKJSFKJL',
'channel' : random.randint(0,100),
'ssid' : 'sdfjaskfjlkdfjglfdghfketa',
'strength' : -30,
'encryption' : 'WPA'
}]
result = collection.insert_many(docs)
print result.inserted_ids

14
test/test_mongo_retrieve.py

@ -0,0 +1,14 @@ @@ -0,0 +1,14 @@
from pymongo import MongoClient
import random
client = MongoClient('localhost', 27017)
db = client.test_database
collection = db.test_collection
# Note:
# The space in front of the askterisk is important.
# (Got it working through trial and error: W* worked, *A didn't, so * as leading character led to problems.)
for doc in collection.find({'encryption':{'$regex':' *'}}):
print "Channel: %d \tNetwork bssid: %s"%( doc['channel'], doc['bssid'] )
Loading…
Cancel
Save