Added Scanner identification and MQTT handling

This commit is contained in:
2022-04-13 15:43:20 +02:00
parent 4da41fe1cd
commit 4b7234fa68
18 changed files with 595 additions and 76 deletions

5
docker/create_redis.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
docker run --name redis_django \
-p 6379:6379/tcp \
-e ALLOW_EMPTY_PASSWORD=yes \
-d bitnami/redis:latest

2
docker/start_redis.sh Normal file
View File

@@ -0,0 +1,2 @@
#!/bin/sh
docker start redis_django

3
docker/stop_redis.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
docker stop redis_django