instacart / ahab

Docker event handling with Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ahab

image

It's easy to install Ahab:

pip install ahab

To get detailed information about Docker events from the command line:

ahab --console debug

To use Ahab as library, you can pass functions to the Ahab() constructor:

def f(event, data):
    pass        # Handle the Docker event (and extended info, as available)


ahab = Ahab(handlers=[f])
ahab.listen()

Or subclass Ahab:

class Queequeg(Ahab):
    def handle(self, event, data):
        pass                                               # Your code here

About

Docker event handling with Python

License:ISC License


Languages

Language:Python 100.0%