docker-hook icon indicating copy to clipboard operation
docker-hook copied to clipboard

Automatic Docker Deployment via Webhooks

Results 10 docker-hook issues
Sort by recently updated
recently updated
newest added

Hello, When looking at the docs, it seems it's only possible to consume one web hook. I have several projects on docker hub, that should deploy. The correct solution would...

This code made error as follow. ... AttributeError: 'HTTPMessage' object has no attribute 'getheader' ---------------------------------------- 'HTTPMessage' object has no attribute 'getheader' It works well, but I didn't check at python2...

monitoring branch to deploy

I think docker-hook command not running in the background, So I've used nohup command to docker hook in the background. I want to store logs in deploy.log when the script...

Python3 payloads are of type bytes, and cannot be used with json.loads. Decode bytes before reading payload.

The getheader function is a python2 alias for get, but it does not exist in python3. Replace use of getheader with get. Reference: https://bugs.launchpad.net/python-keystoneclient/+bug/1267987.

I see exceptions raised by docker-hook for every single action I do with my registry. ``` Exception happened during processing of request from ('127.0.0.1', 41065) Traceback (most recent call last):...

If the hook called includes data, which is not JSON format, this will cause an exception. In my case, this is a problem if using hooks from Slack, and I...