mirror of
https://github.com/btouchard/ackify-ce.git
synced 2026-01-15 10:20:02 -06:00
- Envoi des événements vers des URLs configurées - Signature HMAC-SHA256 via en-tête X-Signature (secret partagé) - Retentatives avec backoff exponentiel et jitter - Timeout réseau et gestion des erreurs/transitoires - Idempotence par event_id et journalisation structurée - Paramètres: WEBHOOK_URLS, WEBHOOK_SECRET, WEBHOOK_TIMEOUT_MS, WEBHOOK_MAX_RETRIES
32 lines
667 B
YAML
32 lines
667 B
YAML
name: ackify-ce
|
|
|
|
services:
|
|
ackify-db:
|
|
image: postgres:16-alpine
|
|
container_name: ackify-db-test
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: testpassword
|
|
POSTGRES_DB: ackify_test
|
|
volumes:
|
|
- ackify_test:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres -d ackify_test"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
mailhog:
|
|
image: mailhog/mailhog:latest
|
|
container_name: ackify-mailhog-test
|
|
restart: unless-stopped
|
|
ports:
|
|
- "1025:1025"
|
|
- "8025:8025"
|
|
|
|
volumes:
|
|
ackify_test:
|