https://github.com/signiant/azure-queue-poll
Polls an Azure Storage Queue for messages and writes them to syslog
https://github.com/signiant/azure-queue-poll
Last synced: 7 days ago
JSON representation
Polls an Azure Storage Queue for messages and writes them to syslog
- Host: GitHub
- URL: https://github.com/signiant/azure-queue-poll
- Owner: Signiant
- License: mit
- Created: 2015-07-09T13:06:14.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-10-31T14:25:00.000Z (over 8 years ago)
- Last Synced: 2025-03-05T13:49:09.930Z (about 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# azure-queue-poll
Polls an Azure storage queue for messages and writes to STOUT
## Config file format
````
{
"account": "AZURE STORAGE ACCOUNT NAME",
"key": "AZURE STORAGE ACCOUNT KEY",
"queue": "AZURE STORAGE QUEUE NAME"
}
````
Sample docker run command showing how to mount the config file into the container using a data volume on the local docker host
:
````
docker run -d --privileged=true \
-v /my/local/folder/qbranch_config.json:/usr/src/app/qbranch_config.json \
--name azure_queue_poll \
signiant/azure-queue-poll
````