| 12345678910111213141516171819202122 |
- # compose.yaml
- name: influxdb3
- services:
- influxdb3-core:
- container_name: influxdb3-core
- image: influxdb:3-core
- ports:
- - 8181:8181
- command:
- - influxdb3
- - serve
- - --node-id=node0
- - --object-store=file
- - --data-dir=/var/lib/influxdb3/data
- - --plugin-dir=/var/lib/influxdb3/plugins
- volumes:
- - type: bind
- source: ~/.influxdb3/core/data
- target: /var/lib/influxdb3/data
- - type: bind
- source: ~/.influxdb3/core/plugins
- target: /var/lib/influxdb3/plugins
|