All Projects → danionescu0 → Docker Flask Mongodb Example

danionescu0 / Docker Flask Mongodb Example

Uses docker compose with a python flask microservice and MongoDB instance to make a sample application

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Docker Flask Mongodb Example

Php Crud Api
Single file PHP script that adds a REST API to a SQL database
Stars: ✭ 2,904 (+5826.53%)
Mutual labels:  swagger, crud, geospatial
Docker Compose Grafana Influxdb
Demonstration scripts for running Grafana with InfluxDB as datasource.
Stars: ✭ 29 (-40.82%)
Mutual labels:  influxdb, grafana, docker-compose
Go Micro Boilerplate
The boilerplate of the GoLang application with a clear microservices architecture.
Stars: ✭ 147 (+200%)
Mutual labels:  microservice, swagger, docker-compose
Iotstack
docker stack for getting started on IOT on the Raspberry PI
Stars: ✭ 1,383 (+2722.45%)
Mutual labels:  influxdb, mqtt, grafana
luftdatenpumpe
Process live and historical data from luftdaten.info, IRCELINE and OpenAQ. Filter by station-id, sensor-id and sensor-type, apply reverse geocoding, store into timeseries and RDBMS databases, publish to MQTT, output as JSON or visualize in Grafana.
Stars: ✭ 22 (-55.1%)
Mutual labels:  mqtt, influxdb, grafana
Rest Hapi
🚀 A RESTful API generator for Node.js
Stars: ✭ 1,102 (+2148.98%)
Mutual labels:  swagger, mongodb, crud
Mongoke
Instant Graphql for MongoDb (active branch is golang, rewrite in process)
Stars: ✭ 203 (+314.29%)
Mutual labels:  microservice, mongodb, docker-compose
Pi Hole Monitoring
Monitoring Pi-Hole statistics with Grafana
Stars: ✭ 196 (+300%)
Mutual labels:  influxdb, grafana, docker-compose
cv4pve-metrics
Metrics for Proxmox VE, Grafana with dasboard, InfluxDb
Stars: ✭ 38 (-22.45%)
Mutual labels:  influxdb, docker-compose, grafana
ruuvitag-demo
Demo of reading Bluetooth Low Energy sensor measurements of RuuviTag environmental sensors and feeding them to MQTT, a database and dashboards
Stars: ✭ 14 (-71.43%)
Mutual labels:  mqtt, influxdb, grafana
Appkernel
API development made easy: a smart Python 3 API framework
Stars: ✭ 152 (+210.2%)
Mutual labels:  microservice, mongodb, flask
Jianshu
仿简书nx+nodejs+nestjs6+express+mongodb+angular8+爬虫
Stars: ✭ 296 (+504.08%)
Mutual labels:  swagger, mongodb, crud
kotori
A flexible data historian based on InfluxDB, Grafana, MQTT and more. Free, open, simple.
Stars: ✭ 73 (+48.98%)
Mutual labels:  mqtt, influxdb, grafana
Bgp Dashboard
BGP Dashboard and Monitoring Web Application
Stars: ✭ 268 (+446.94%)
Mutual labels:  mongodb, flask, docker-compose
Stream Reactor
Streaming reference architecture for ETL with Kafka and Kafka-Connect. You can find more on http://lenses.io on how we provide a unified solution to manage your connectors, most advanced SQL engine for Kafka and Kafka Streams, cluster monitoring and alerting, and more.
Stars: ✭ 753 (+1436.73%)
Mutual labels:  mongodb, influxdb, mqtt
Springbootunity
rabbitmq、redis、scheduled、socket、mongodb、Swagger2、spring data jpa、Thymeleaf、freemarker etc. (muti module spring boot project) (with spring boot framework,different bussiness scence with different technology。)
Stars: ✭ 845 (+1624.49%)
Mutual labels:  swagger, mongodb
Microservices Connector
Inter-Service communication framework, support for microservice architecture and distributed system
Stars: ✭ 17 (-65.31%)
Mutual labels:  microservice, flask
Social Listener
Python project used to collect tweets and social-network data from Social's API
Stars: ✭ 9 (-81.63%)
Mutual labels:  mongodb, flask
P2p
一个基于 python 的 flask 框架的资讯网站, http://119.29.100.53:8086/
Stars: ✭ 28 (-42.86%)
Mutual labels:  mongodb, flask
Apispec
A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification)..
Stars: ✭ 831 (+1595.92%)
Mutual labels:  swagger, flask

Purpose

test-build

A working demo usage of multiple technologies like: Docker, Docker-compose, MongoDb, Python3, Mosquitto, Swagger, Locusts, Grafana, InfluxDB

Please consider adding issues of bugs and enhancements

If you consider this demo usefull give it a star so others will find it quicker :)

Contributing

Prerequisites

Docker:

How to install docker on Ubuntu: https://docs.docker.com/install/linux/docker-ce/ubuntu/

How to install docker on Centos: https://docs.docker.com/engine/install/centos/

How to install docker on Windows: https://docs.docker.com/docker-for-windows/install-windows-home/

tested with version: 20.10.2

Docker compose

How to install docker compose: https://docs.docker.com/compose/install/

tested with version: 1.28.4

Applications:

The applications will run using docker-compose, below are the services descriptions, for more info click on the title:

1 Random service generates random numbers and lists them (port 800) a second cotainer with same app is opened on port 801 using pypy which is faster, check Random service description to see details about the test

2 User CRUD service Create, read, update and detele operations over a user collection (port 81)

3 MQTT service will use a MQTT server (Mosquitto) to allow to publish sensor updates over MQTT (port 1883) The updates will be saved in mongodb (/demo/sensors). It will also compute a running average for each sensor and publish it to a separate topic

4 Fulltext service fulltext search engine backed by fulltext mongoDb index (port 82)

5 Geospacial search service geospacial search service that supports adding places, and quering the placing by coordonates and distance (port 83)

6 Baesian_average baesian average demo (https://en.wikipedia.org/wiki/Bayesian_average) (port 84)

7 Photo process This is a demo of disk manipulation using docker volumes. Photos will be stored on disk retrived and resized / rotated. Also a search by image API will be available (port 85)

8 Book collection A virtual book library, has api methods for managing books, and borrowing book mechanisms. The users must have "profiles" created using the User CRUD service. This api used flask rest plus (https://flask-restplus.readthedocs.io/en/stable/) (port 86)

9 Grafana and InfluxDb Grafana with InfluxDb storage. For showing graphs on sensors. It is connected with the MQTT service. Every datapoint that passes through the MQTT service will be saved in InfluxDb and displayed in Grafana. (port 3000) Default credentials are: admin / admin

10 User CRUD fastapi Create, read, update and detele operations made available with fastapi framework (port 88)

Diagram Grafana

Technollogies involved

Run the microservice

Before running check that the ports are available and free on your machine!

On linux run the following command and check if the ports are free:

cd docker-flask-mongodb-example
./check_ports.sh 
port 800 is free
port 801 is free
port 81 is free
port 82 is free
port 83 is free
port 84 is free
port 85 is free
port 86 is free
port 88 is free
port 1883 is free
port 27017 is free
port 8080 is free
port 3000 is free

Start the microservice architecture:

cd docker-flask-mongodb-example
docker-compose build
docker-compose up

Populate with mock data [optional]

Run the import.sh script, it will populate data for users and fulltext search usecases

  1. start all services with docker compose

  2. run the import script

chmod +x import.sh
./import.sh

Testing the architecture [optional]

Automatic testing using pytest

Work in progress..

docker-compose up
pip install -r tests/requirements.txt
pytest -q tests/test_users.py  -s

Manual testing:

For all HTTP requests we'll be using [curl][https://curl.haxx.se/docs/manpage.html]. In most UNIX systems curl is already installed. If you're using Debian/Ubuntu and you don't have curl try using:

sudo apt-get install curl

An alternative manual HTTP testing you could use Swagger, for example for users crud operations in a browser open: http://localhost:81/apidocs to see the Swagger UI and to perform test requests from there!

For the MQTT application we'll use mosquitto cli: To install mosquitto cli in Debian / Ubuntu use:

sudo apt-get install mosquitto-clients

To load the test data i provided in MongoDb, you can use mongorestore after starting the services like this:

cd docker-flask-mongodb-example
docker compose up
mongorestore -d demo ./resources/demo-data/

Stress testing using locusts.io

Using locust.io

  1. Installation: https://docs.locust.io/en/stable/installation.html
  1. Ensure port 8089 is free

  2. Go to project root in console

  3. Run the following:

Testing random demo microservice:

locust -f stresstest-locusts/random-demo.py --host=http://localhost:800 --web-host localhost

Testing users microservice:

locust -f stresstest-locusts/users.py --host=http://localhost:81 --web-host localhost

Testing fulltext_search microservice:

locust -f stresstest-locusts/fulltext_search.py --host=http://localhost:82 --web-host localhost

Testing geolocation_search microservice:

locust -f stresstest-locusts/geolocation_search.py --host=http://localhost:83 --web-host localhost

Testing baesian microservice:

locust -f stresstest-locusts/baesian.py --host=http://localhost:84 --web-host localhost

After starting any service open http://localhost:8089 to acces the testing UI

API gateway using Krakend Website: https://www.krakend.io

Web configurator: https://designer.krakend.io/

The API gateway is installed inside this project using a docker container in docker.compose.yml, it loads it's configuration from krakend.json

For demo purposes i've configured the gateway for two endpoints. The Krakend runs on port 8080

  1. the random generator service (web-random), GET request
curl -i "http://localhost:8080/random?upper=10&lower=5"
  1. the users service, (web-users), GET all users request
curl -i "http://localhost:8080/users?limit=5&offset=0"

All requests can be configured through this gateway using the json file or the web configurator.

Deployment using Kubernetes (an alternative to docker-compose)

Works for full text search and random demo.

Prerequisites :

Steps:

  1. Apply the kubernetes configuration:
kubectl apply -f ./kubernetes
  1. Activate the minikube tunnel in a separate console
minikube tunnel
  1. Look up services ips:
kubectl get services

# it will show up smth like
NAME                      TYPE           CLUSTER-IP       EXTERNAL-IP      PORT(S)          AGE
fulltext-search-service   LoadBalancer   10.108.117.106   10.108.117.106   82:30902/TCP     6s
random-demo-service       LoadBalancer   10.108.246.115   10.108.246.115   800:30858/TCP    6s

Now visit the app in your browser ex: http://external_ip_for_random_demo_service:800/apidocs

Services explained:

Random service

This service generates random numbers and store them in a capped array (last 5 of them). Also it can generate and return a random number.

The random number collection has only one documents with '_id' lasts and an "items" key that will be a capped array.

MongoDb capped array: https://www.mongodb.com/blog/post/push-to-sorted-array

Sample data in "random_numbers" collection document:

{
  "_id" : "lasts",
  "items": [3, 9, 2, 1, 2]
}
...

MongoDb official documentation (array operations): https://docs.mongodb.com/manual/reference/operator/update/slice/

Swagger url: http://localhost:800/apidocs

Api methods using Curl:

  • Generate a random number between 10 and 100 and returns it:
curl -i "http://localhost:800/random?lower=10&upper=100"
  • Generate a random number between 10 and 100 and saves it into the capped array:
curl -X PUT -i "http://localhost:800/random" -d lower=10 -d upper=20
  • View last 5 generated numbers list:
curl -i "http://localhost:800/random-list"

Using PyPy for speed

A second container with the same api opened on port 801 using pypy which should be faster in theory.

The test system is a i7-4720HQ 2.60GHz wih 12 GB RAM and a SSD drive on which i've run the docker-compose architecture.

The load testing is done using apache bench (https://httpd.apache.org/docs/2.4/programs/ab.html) 3000 requests with 20 concurent requests, the results measured are average requests per second.

Results without PyPy:

ab -n 3000 -c 20 'http://localhost:800/random?lower=10&upper=10000'
...
Requests per second:    692.83 [#/sec] (mean)
Time per request:       28.867 [ms] (mean)
Time per request:       1.443 [ms] (mean, across all concurrent requests)
...

Results with PyPy:

ab -n 3000 -c 20 'http://localhost:801/random?lower=10&upper=10000'
...
Requests per second:    1224.29 [#/sec] (mean)
Time per request:       16.336 [ms] (mean)
Time per request:       0.817 [ms] (mean, across all concurrent requests)
...

The results with pypy are far better, approximatively 90% percent increase, BUT i've noticed that need a warm up (i've run the benchmark on this service multiple times before) until they get to this performance, i'll investigate this further.

These tests are made possible thanks to neelabalan(https://github.com/neelabalan).

User CRUD service

CRUD stands for Create, Read, Update and Delete operations. I've written a demo for these operations on a collections of users. A user has a userid, name and email fields.

Sample data in user collection document:

{
  "_id" : 12,
  "email": "[email protected]",
  "name": "some name"
}
...

Swagger url: http://localhost:81/apidocs

Api methods using Curl:

  • PUT request, this request will add a user with a userid, name and email:

example: add a new user with name dan email [email protected] and userid 189

curl -X PUT -d [email protected] -d name=dan http://localhost:81/users/189
  • POST request, this request will modify a user name or email or both:

example, modify the email of the user with id 10

curl -X POST -d [email protected]  http://localhost:81/users/10

  • GET request, this request will output as json the id, name and email of the user

example for with id 1:

curl -i "http://localhost:81/users/1"
  • DELETE request, this request will delete a user with a specified id

example for with id 1:

curl -X DELETE -i "http://localhost:81/users/1"

MQTT service

This usecase uses MQTT protocol instead of HTTP to communicate. It involves storing last 5 numerical values of a sensor, running a moving average on them and publishing the average each time on a different topic.

MQTT official link: http://mqtt.org/

MQTT explained: https://randomnerdtutorials.com/what-is-mqtt-and-how-it-works/

MQTT info, tools stuff: https://github.com/hobbyquaker/awesome-mqtt#tools

MongoDb capped array: https://www.mongodb.com/blog/post/push-to-sorted-array

Sample data in sensors collection document:

	"_id" : "some_sensor",
	"items" : [
		{
			"value" : 23,
			"date" : ISODate("2019-03-09T17:49:10.585Z")
		},
		{
			"value" : 5,
			"date" : ISODate("2019-03-09T17:49:08.766Z")
		},
        ... 3 more
	]
...
  • To update a sensor with id: "some_sensor" and value "15.2" use:
mosquitto_pub -h localhost -u some_user -P some_pass -p 1883 -d -t sensors -m "{\"sensor_id\": \"temperature\", \"sensor_value\": 15.2}"

This will publish to mosquitto in the "sensors" topic the following json: {'sensor_id": 'temperature', 'sensor_value': 15.2}

Our python script will listen to this topic too, and save in the mongo sensors collections the value for the sensor in a capped array.

After it writes the new values, it reads the last 5 values and computes an average (running average) and publish it to topic "average/temperature"

  • To get updates for all sensors use:
mosquitto_sub -h localhost -u some_user -P some_pass -p 1883 -d -t sensors

This will just listen for updates for the topic "sensors"

  • To get updates for the average 5 values for sensor "temperature" use:
mosquitto_sub -h localhost -u some_user -P some_pass -p 1883 -d -t averages/temperature

This will just listen for updates for the topic "averages/temperature" and get a running average for the sensor "temperature". Each time someone publishes a new value for a sensor, the python script will calculate the average values of last 5 values and publishes it

Fulltext service

This service exposes a REST API for inserting a text into the full text database, and retriving last 10 matches

MongoDb official documentation (text search): https://docs.mongodb.com/manual/text-search/

Sample data in fulltext_search collection document:

{
	"_id" : ObjectId("5c44c5104f2137000c9d8cb2"),
	"app_text" : "ana has many more apples",
	"indexed_date" : ISODate("2019-01-20T18:59:28.060Z")
}
...

Swagger url: http://localhost:82/apidocs

Api methods using Curl:

  • To index a new expression like "ana has many more apples":
curl -X PUT -d expression="ana has many more apples"  http://localhost:82/fulltext
  • To get all indexed expressions containing word "who"
curl -i "http://localhost:82/search/apples"

Geospacial search service

The service will allow to insert locations with coordonats (latitude and longitude), and will expose an REST API to all locations near a point.

MongoDb official documentation(geospacial index): https://docs.mongodb.com/manual/geospatial-queries/

Sample data in places collection document:

{
	"_id" : ObjectId("5c83f901fc91f1000c29fb4d"),
	"location" : {
		"type" : "Point",
		"coordinates" : [
			-75.1652215,
			39.9525839
		]
	},
	"name" : "Philadelphia"
}
..

Swagger url: http://localhost:83/apidocs

Api methods using Curl:

  • To add a location named "Bucharest" with latitude 26.1496616 and longitude 44.4205455
curl -X POST -d name=Bucharest -d lat="26.1496616" -d lng="44.4205455" http://localhost:83/location
  • To get all locations near 26.1 latitude and 44.4 longitude in a range of 50000 meters (50 km)
curl -i "http://localhost:83/location/26.1/44.4?max_distance=50000"

Baesian average

This is a naive implementation of the baesian average (https://en.wikipedia.org/wiki/Bayesian_average).

It's naive because it's not built with scalability in mind.

The baesian average is used in rating systems to add weight to the number of votes.

In this example we'll use items and users. A user is represented by it's id and it rates items from 0 - 10

A Item it's represented by an id and a name and it's rated by the users.

A full rating example:

Items:

  • id: 1, name: Hamlet, votes by users: 10
  • id: 2, name: Cicero, votes by users: 9, 10, 9
  • id: 3, name: Alfred, votes by users: 10, 4, 8, 8

How to calculate Baesian average for item 2:

avg_num_votes = 2.333   // The average number of votes for all items (1+3+4) / 3

avg_rating = 8.5 		// The average rating for all items (10+9+10+9+10+4+8+8) / 8

item_num_votes = 3  	// The number of votes for current item (Item 2) 

item_rating = 9.33      // The average rating for current item (Item 2): (9+10+9)/3

bayesian_average = 8.941 // ((avg_num_votes * avg_rating) + (item_num_votes * item_rating)) / (avg_num_votes + item_num_votes)
                    
Averages:
                    
Element 1: 8.909        
Element 2: 8.941
Element 3: 7.9

You can see although Hamlet has an 10, and Cicero has two 9's and one 10 the baesian average of Cicero is the highest

Sample data in baesian collection document:

{
	"_id" : 2,
	"name" : "Cicero",
	"marks" : [
		{
			"userid" : 5,
			"mark" : 9
		},
		{
			"userid" : 3,
			"mark" : 10
		},
		{
			"userid" : 2,
			"mark" : 9
		}
	],
	"nr_votes" : 3,
	"sum_votes" : 27
}

Swagger url: http://localhost:84/apidocs

Using Curl:

To create an item:

curl -X POST -i "http://localhost:84/item/3" -d name=some_name

To vote an item:

ex: user with id 9 votes item 3 with mark 8

curl -X PUT -i "http://localhost:84/item/vote/3" -d mark=8 -d userid=9

To get an item, along with it's average:

curl -i "http://localhost:84/item" 

Photo process

In this usecase we'll use docker volumes to map the local folder called "container-storage" inside the Docker image.

The python webserver will write / delete images in this folder.

One interesting feature of this api is to search similar images. For example you cand take one photo from the container-storage folder, rename it, and modify the brightness or slightly crop it and then try to find it using the API.

To achive this the script will load all images from disk, hash them using a hasing function and compare the hash differences. It's only a naive implementation for demo purposes, it's main drawbacks are memory limit (all hashes should fit in memory) and linear search times, the complexity of the search it's linear with the number of photo hashed and saved.

The API will expose methods for adding and deleting images along with resizing and rotating and search by similar image

Swagger url: http://localhost:85/apidocs

Api methods using Curl:

To get image with id 1, and rezise it by height 100

curl -i "http://localhost:85/photo/1?resize=100"

To delete image with id 1:

curl -X DELETE http://localhost:85/photo/1

To add a image with id 1:

curl -X PUT -F "[email protected]" http://localhost:85/photo/1

To search images similar with a given one:

curl -X PUT -F "[email protected]" http://localhost:85/photo/similar

Book-collection

A book library. Users must be defined using the Users CRUD service. Book profiles can be created through the API. Books can be borrowed and an accounting mechanism for this is in place.

Uses Flask Restplus: https://flask-restplus.readthedocs.io

The Swagger is http://localhost:86

Api methods using Curl:

Add a book:

curl -X PUT "http://localhost:86/book/978-1607965503" -H "accept: application/json" -H "Content-Type: application/json" -d "{ \"isbn\": \"978-1607965503\", \"name\": \"Lincoln the Unknown\", \"author\": \"Dale Carnegie\", \"publisher\": \"snowballpublishing\", \"nr_available\": 5}"

Get a book:

curl -i "curl -X GET "http://localhost:86/book/978-1607965503" -H "accept: application/json"" 

List all books:

curl -X GET "http://localhost:86/book?limit=5&offset=0" -H "accept: application/json" 

Delete a book:

curl -X DELETE "http://localhost:86/book/1" -H "accept: application/json"

Borrow book:

curl -X PUT "http://localhost:5000/borrow/1" -H "accept: application/json" -H "Content-Type: application/json" -d "{ \"id\": \"1\", \"userid\": 4, \"isbn\": \"978-1607965503\", \"borrow_date\": \"2019-12-12T09:32:51.715Z\", \"return_date\": \"2020-02-12T09:32:51.715Z\"}"

List a book borrow:

curl -X GET "http://localhost:86/borrow/1" -H "accept: application/json"

List all book borrows:

curl -X GET "http://localhost:86/borrow?limit=2&offset=0" -H "accept: application/json"

Return a book:

curl -X PUT "http://localhost:86/borrow/return/16" -H "accept: application/json" -H "Content-Type: application/json" -d "{ \"id\": \"16\", \"return_date\": \"2019-12-13T08:48:47.899Z\"}"

Grafana and InfluxDb

Grafana with InfluxDb integration for displaying sensor data. the MQTT service sends datapoints to InfluxDb and Grafana displays the metrics.

Default credentials are: admin / admin

The Grafana web interface is available at: http://localhost:3000

The grafana API methods are available here: https://grafana.com/docs/grafana/latest/http_api/

The grafana docker image creates a dashboard called "SensorMetrics", so in the interface go to home and select it. Tips, in the "sensortype" selector write humidity / temperature or whatever you inserted and then press enter on it. I sometimes saw a bug, if you don't press enter it didn't select the corect sensortype as a default

Inserting humidity datapoint with value 61 data directly into the InfluxDb database:

curl -i -XPOST 'http://localhost:8086/write?db=influx' --data-binary 'humidity value=61'

Inserting humidity datapoint with value 61 using MQTT:

mosquitto_pub -h localhost -u some_user -P some_pass -p 1883 -d -t sensors -m "{\"sensor_id\": \"humidity\", \"sensor_value\": 61}"

After you have inserted some datapoints, to view the graphs first select the "SensorMetrics", then from the top right corner select "Last 5 minutes" and from sensortype selectbox type the sensor name (the one you inserted datapoints for) like "humidity".

To connect to your local InfluxDb instance use for debug or for fun:

docker ps

You should get something like:

CONTAINER ID        IMAGE                                   COMMAND                  CREATED             STATUS              PORTS                                        NAMES
88598a4bf2bc   web-standard-pypy                       "pypy /root/flask-mo…"   32 seconds ago   Up 21 seconds   0.0.0.0:801->5000/tcp                        docker-flask-mongodb-example_web-random-pypy_1
2c15756423dc   web-bookcollection-image                "python /root/flask-…"   5 days ago       Up 19 seconds   0.0.0.0:86->5000/tcp                         docker-flask-mongodb-example_web-book-collection_1
f804e912e512   devopsfaith/krakend                     "/usr/bin/krakend ru…"   5 days ago       Up 20 seconds   8000/tcp, 8090/tcp, 0.0.0.0:8080->8080/tcp   docker-flask-mongodb-example_krakend_1
15ea923f378c   web-photo-image                         "python /root/flask-…"   5 days ago       Up 24 seconds   0.0.0.0:85->5000/tcp                         docker-flask-mongodb-example_web-photo-process_1
90003c4c5ea9   backgorund-mqtt-image                   "python /root/flask-…"   5 days ago       Up 27 seconds   5000/tcp                                     docker-flask-mongodb-example_background-mqtt_1
e9a21902695c   web-geolocation-image                   "python /root/flask-…"   5 days ago       Up 29 seconds   0.0.0.0:83->5000/tcp                         docker-flask-mongodb-example_web-geolocation-search_1
6896e7c793bc   web-standard                            "python /root/flask-…"   5 days ago       Up 28 seconds   0.0.0.0:84->5000/tcp                         docker-flask-mongodb-example_web-baesian_1
32bacfb75aa5   web-standard                            "python /root/flask-…"   5 days ago       Up 27 seconds   0.0.0.0:82->5000/tcp                         docker-flask-mongodb-example_web-fulltext-search_1
0e3c2f07d699   web-standard                            "python /root/flask-…"   5 days ago       Up 25 seconds   0.0.0.0:81->5000/tcp                         docker-flask-mongodb-example_web-users_1
19edd4cd73fa   web-standard                            "python /root/flask-…"   5 days ago       Up 22 seconds   0.0.0.0:800->5000/tcp                        docker-flask-mongodb-example_web-random_1
cb77566c0cd5   web-users-fastapi-image                 "uvicorn users-fasta…"   5 days ago       Up 30 seconds   0.0.0.0:88->5000/tcp                         docker-flask-mongodb-example_web-users-fast-api_1
d220b6da78cf   docker-flask-mongodb-example_grafana    "/app/entrypoint.sh"     5 days ago       Up 23 seconds   0.0.0.0:3000->3000/tcp                       docker-flask-mongodb-example_grafana_1
0f4b9577ce7a   docker-flask-mongodb-example_influxdb   "/app/entrypoint.sh"     5 days ago       Up 28 seconds   0.0.0.0:8086->8086/tcp                       docker-flask-mongodb-example_influxdb_1
af82fc58a992   mongo:latest                            "docker-entrypoint.s…"   5 days ago       Up 32 seconds   0.0.0.0:27017->27017/tcp                     docker-flask-mongodb-example_mongo_1
5aa9566539bc   docker-flask-mongodb-example_mqtt       "/docker-entrypoint.…"   5 days ago       Up 30 seconds   0.0.0.0:1883->1883/tcp                       docker-flask-mongodb-example_mqtt_1

Now lunch the influx shell inside the container replacing 035124f1b665 with your own container id like so:

docker exec -it 035124f1b665 influx

And you're inside the influx shell, and you can issue commands like:

SHOW DATABASES
-- will print all databases
USE influx
-- selects "influx" database
SHOW MEASUREMENTS
-- shows currents measuremets: like temperature humidity etc
SELECT * from "humidity"
-- shows all records from humidity

More examples in the documentation: https://docs.influxdata.com/influxdb/v1.7/introduction/getting-started/

User CRUD fastapi

Same as User CRUD, written with fastapi framework (https://fastapi.tiangolo.com/):

Swagger url: http://localhost:88/docs

Contributing

Check open issues (https://github.com/danionescu0/docker-flask-mongodb-example/issues) consider taking on an issue, or adding a new one.

Working on a issue

  • To start developing locally you can use conda to create a new environment with python 3.8 and install the requirements there corresponding to the section you want to work in. Please check docker-compose.yaml file to see which to install.
cd docker--mongodb-example
conda create --name dockerflaskmongodbexample python=3.8.0
conda activate dockerflaskmongodbexample
pip install -r python/requirements.txt
  • Work on branch, modify what you need
  • Run black () to format the code properly (if not the build will fail on push)
cd docker--mongodb-example
pip install black
black --exclude stresstest-locusts/ .
  • Push and create a pull request
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].