mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 06:46:55 +08:00
0dcfa34339
* chore(deps): update prom/prometheus docker tag to v2.51.0 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
25 lines
661 B
YAML
25 lines
661 B
YAML
version: '3'
|
|
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.51.0
|
|
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
|