This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import requests | |
# Path to the JSON file containing the template data | |
TEMPLATES_FILE = "templates.json" | |
# Source and destination Mailgun API keys and domains | |
SOURCE_API_KEY = '...' | |
SOURCE_DOMAIN = '...' | |
DEST_API_KEY = '...' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
networks: | |
monitoring: | |
external: true | |
services: | |
alertmanager: | |
image: prom/alertmanager:v0.27.0 | |
container_name: alertmanager | |
restart: unless-stopped | |
ports: | |
- "9093:9093" |