mirror of
https://github.com/furyhawk/cloudy.git
synced 2026-07-21 02:05:53 +00:00
42 lines
1.4 KiB
YAML
42 lines
1.4 KiB
YAML
volumes:
|
|
prometheus_data: {}
|
|
|
|
networks:
|
|
traefik-public:
|
|
external: true
|
|
|
|
services:
|
|
prometheus:
|
|
image: prom/prometheus:latest
|
|
command:
|
|
- '--config.file=/etc/prometheus/prometheus.yml'
|
|
- '--storage.tsdb.path=/prometheus'
|
|
- '--storage.tsdb.retention.time=${PROMETHEUS_RETENTION:-30d}'
|
|
- '--web.console.libraries=/etc/prometheus/console_libraries'
|
|
- '--web.console.templates=/etc/prometheus/consoles'
|
|
- '--web.enable-lifecycle'
|
|
volumes:
|
|
- prometheus_data:/prometheus
|
|
- /var/data/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml:ro
|
|
networks:
|
|
- traefik-public
|
|
ports:
|
|
- target: 9090
|
|
published: 9090
|
|
deploy:
|
|
mode: replicated
|
|
replicas: 1
|
|
placement:
|
|
constraints:
|
|
- node.role == manager
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.swarm.network=traefik-public
|
|
- traefik.constraint-label=traefik-public
|
|
- traefik.http.routers.prometheus-https.rule=Host(`prometheus.${DOMAIN?Variable not set}`)
|
|
- traefik.http.routers.prometheus-https.entrypoints=https
|
|
- traefik.http.routers.prometheus-https.tls=true
|
|
- traefik.http.routers.prometheus-https.tls.certresolver=le
|
|
- traefik.http.routers.prometheus-https.middlewares=admin-auth@swarm
|
|
- traefik.http.services.prometheus.loadbalancer.server.port=9090
|