| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- ---
- kind: compose
- metadata:
- icon:
- provider: selfh
- id: influxdb
- name: Influxdb
- description: |-
- InfluxDB is a powerful, open-source time series database designed for high-performance handling of time-stamped data.
- It is commonly used for monitoring, analytics, and IoT applications.
- ## References
- * **Project:** https://www.influxdata.com/
- * **Documentation:** https://docs.influxdata.com/influxdb/
- * **GitHub:** https://github.com/influxdata/influxdb
- version: 2.8.0-alpine
- author: Christian Lempa
- date: '2025-12-11'
- tags:
- - traefik
- draft: true
- spec:
- ports:
- vars:
- ports_http:
- description: "Host port for HTTP API (8086)"
- type: int
- default: 8086
- influxdb:
- description: "InfluxDB initialization settings"
- required: true
- vars:
- influxdb_init_username:
- description: "Initial admin username"
- type: str
- default: "admin"
- required: true
- influxdb_init_password:
- description: "Initial admin password"
- type: secret
- config:
- autogenerated: true
- required: true
- general:
- vars:
- influxdb_version:
- type: str
- description: Influxdb version
- default: latest
|