forked from hotosm/central-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.webhook.yml
More file actions
18 lines (17 loc) · 841 Bytes
/
compose.webhook.yml
File metadata and controls
18 lines (17 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This file is for extending the docker-compose.yml file in the getodk/central repo.
# From the getodk/central repo:
# docker compose -f docker-compose.yml -f /path/to/this/repo/compose.webhook.yml up -d
services:
webhook:
image: "ghcr.io/hotosm/central-webhook:0.1.1"
environment:
CENTRAL_WEBHOOK_DB_URI: postgresql://odk:odk@postgres14:5432/odk?sslmode=disable
CENTRAL_WEBHOOK_UPDATE_ENTITY_URL: ${CENTRAL_WEBHOOK_UPDATE_ENTITY_URL}
CENTRAL_WEBHOOK_REVIEW_SUBMISSION_URL: ${CENTRAL_WEBHOOK_REVIEW_SUBMISSION_URL}
CENTRAL_WEBHOOK_NEW_SUBMISSION_URL: ${CENTRAL_WEBHOOK_NEW_SUBMISSION_URL}
CENTRAL_WEBHOOK_API_KEY: ${CENTRAL_WEBHOOK_API_KEY}
CENTRAL_WEBHOOK_LOG_LEVEL: ${CENTRAL_WEBHOOK_LOG_LEVEL:-INFO}
depends_on:
postgres14:
condition: service_started
restart: always