appstore-1panel/apps/prometheus/2.53.1/docker-compose.yml

24 lines
648 B
YAML
Raw Normal View History

2023-12-07 15:17:06 +08:00
services:
clickhouse:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:9090"
volumes:
- ./conf:/etc/prometheus/
- ./prometheus:/prometheus
image: prom/prometheus:v2.53.1
2023-12-07 15:17:06 +08:00
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
- '--web.console.libraries=/etc/prometheus/console_libraries'
- '--web.console.templates=/etc/prometheus/consoles'
- '--storage.tsdb.retention=200h'
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true