| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- ---
- kind: compose
- metadata:
- name: Influxdb
- description: Docker compose setup for influxdb
- version: 2.7.12-alpine
- author: Christian Lempa
- date: '2025-09-28'
- tags:
- - influxdb
- - docker
- - compose
- 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"
- influxdb_init_password:
- description: "Initial admin password"
- type: str
- sensitive: true
- default: "changeme"
- influxdb_init_org:
- description: "Initial organization name"
- type: str
- default: "myorg"
- influxdb_init_bucket:
- description: "Initial bucket name"
- type: str
- default: "mybucket"
- influxdb_init_retention:
- description: "Data retention period (e.g., 30d, 1y, 0 for infinite)"
- type: str
- default: ""
- influxdb_init_token:
- description: "Initial admin API token (leave empty to auto-generate)"
- type: str
- sensitive: true
- autogenerated: true
- default: ""
- general:
- vars:
- influxdb_version:
- type: str
- description: Influxdb version
- default: latest
|