ba90c93b9f
* HOOK-2: initial commit * Refactoring, added tests * Added postgres for tests * Fixed after comments. Added indicies. v1 * Fixed after comments. v2 * Fixed after comments. v3 * Fixed logs * Changed database structure, fixed dao-classes * Fixed table name, added foreign key * add enabled field * Added some params to post-request * Fix path condition * refactor WebhookDao * Add logs to WebhookHttpPostSender * Add test for signer * Added readme * Fixed readme * fix readme * tiny refactoring * tiny refactoring * add tables required for resending of messages * Fixed after comments, changed webhook id type * Added batch operation * scheduler draft * add scheduled task dao interface * disable scheduler
10 lines
157 B
YAML
10 lines
157 B
YAML
postgres:
|
|
image: postgres:9.6
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: hook
|
|
ports:
|
|
- '5432:5432'
|
|
|