prometheus/templates/compose/cloudflare.yml.j2
2023-01-27 16:51:27 +01:00

18 lines
384 B
Django/Jinja
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: '3.7'
networks:
{{ prometheus_docker_network }}:
external: true
services:
cloudflare-exporter:
container_name: cloudflare-exporter
image: ghcr.io/lablabs/cloudflare_exporter:latest
restart: unless-stopped
environment:
- CF_API_TOKEN={{ cloudflare_api_key }}
ports:
- 8082:8080
networks:
- {{ prometheus_docker_network }}