Added Scanner identification and MQTT handling
This commit is contained in:
5
docker/create_redis.sh
Normal file
5
docker/create_redis.sh
Normal 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
2
docker/start_redis.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
docker start redis_django
|
3
docker/stop_redis.sh
Normal file
3
docker/stop_redis.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
docker stop redis_django
|
||||
|
Reference in New Issue
Block a user