Common Test Docker Compose Hook

A Common Test hook for starting and stopping docker-compose services.

Hooks can be declared in rebar.config with ct_opts:

{ct_opts, [{ct_hooks, [docker_compose_cth]}]}.

Or, it can be done on a per-suite basis including the suite/0 function in the suite module:

suite() ->
[{ct_hooks, [docker_compose_cth]}].

For additional methods for installing and configuring the hook check the docs

Configuration

Todo