Automatic Docker Deployment via Webhooks
docker-hook listens to incoming HTTP requests and triggers your specified command.
docker-hookNo worries - it just downloads a Python script. There won't be anything installed or written elsewhere.
$ curl https://raw.githubusercontent.com/schickling/docker-hook/master/docker-hook > /usr/local/bin/docker-hook; chmod +x /usr/local/bin/docker-hook
docker-hook$ docker-hook <auth-token> <command>
Please choose a secure auth-token string or generate one with $ uuidgen. Keep it safe or otherwise other people might be able to trigger the specified command.
The command can be any bash command of your choice. See the following example. This command will be triggered each time someone makes a HTTP request.
Add a webhook like on the following image. example.com can be the domain of your server or its ip address. docker-hook listens to port 8555. Please replace my-super-safe-token with your auth-token.

This example will stop the current running yourname/app container, pull the newest version and start a new container.
$ docker-hook my-super-safe-token ./deploy.sh
deploy.sh#! /bin/bash
IMAGE="yourname/app"
docker ps | grep $IMAGE | awk '{print $1}' | xargs docker stop
docker pull $IMAGE
docker run -d $IMAGE
You can now test it by pushing something to yourname/app or by running the following command where yourdomain.com is either a domain pointing to your server or just its ip address.
$ curl -X POST yourdomain.com:8555/my-super-safe-token
docker-hook is written in plain Python and does have no further dependencies. It uses BaseHTTPRequestHandler to listen for incoming HTTP requests from Docker Hub and then executes the provided command if the authentification was successful.
This tool was built as a proof-of-concept and might not be completly secure. If you have any improvement suggestions please open up an issue.
Content type
Image
Digest
sha256:46d6542a5…
Size
283.8 MB
Last updated
almost 11 years ago
docker pull cogniteev/docker-hook