Skip to content

Commit bb33542

Browse files
jstirnamanMeelahMe
andcommitted
InfluxDB: Update for InfluxDB 3, condense, add metadata:
- Updated Docker documentation for InfluxDB 3 Core and Enterprise - Docker Compose examples - Support channel preferences - Shorten version docs to startup essentials and link to full documentation - Categories and other metadata Co-authored-by: meelahme <[email protected]>
1 parent 732e247 commit bb33542

File tree

9 files changed

+206
-540
lines changed

9 files changed

+206
-540
lines changed

influxdb/compose.yaml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# compose.yaml
2+
name: influxdb3
3+
services:
4+
influxdb3-core:
5+
container_name: influxdb3-core
6+
image: influxdb:3-core
7+
ports:
8+
- 8282:8181
9+
command:
10+
- influxdb3
11+
- serve
12+
- --node-id=node0
13+
- --object-store=file
14+
- --data-dir=/var/lib/influxdb3/data
15+
- --plugin-dir=/var/lib/influxdb3/plugins
16+
volumes:
17+
- type: bind
18+
source: ~/.influxdb3/core/data
19+
target: /var/lib/influxdb3/data
20+
- type: bind
21+
source: ~/.influxdb3/core/plugins
22+
target: /var/lib/influxdb3/plugins
23+
influxdb3-enterprise:
24+
container_name: influxdb3-enterprise
25+
image: influxdb:3-enterprise
26+
ports:
27+
- 8181:8181
28+
command:
29+
- influxdb3
30+
- serve
31+
- --node-id=node0
32+
- --cluster-id=cluster0
33+
- --object-store=file
34+
- --data-dir=/var/lib/influxdb3/data
35+
- --plugin-dir=/var/lib/influxdb3/plugins
36+
environment:
37+
- INFLUXDB3_ENTERPRISE_LICENSE_EMAIL=EMAIL_ADDRESS
38+
volumes:
39+
- type: bind
40+
source: ~/.influxdb3/enterprise/data
41+
target: /var/lib/influxdb3/data
42+
- type: bind
43+
source: ~/.influxdb3/enterprise/plugins
44+
target: /var/lib/influxdb3/plugins
45+

influxdb/content.md

100644100755
Lines changed: 157 additions & 539 deletions
Large diffs are not rendered by default.

influxdb/get-help.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[InfluxDB Discord Server](https://discord.gg/9zaNCW2PRT) *(preferred for **InfluxDB 3 Core**, **InfluxDB 3 Enterprise**)*, [InfluxDB Community Slack](https://influxdata.com/slack) *(preferred for **InfluxDB v2**, **v1**)*.

influxdb/github-repo

100644100755
File mode changed.

influxdb/license.md

100644100755
File mode changed.

influxdb/logo.png

100644100755
File mode changed.

influxdb/metadata.json

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
"hub": {
33
"categories": [
4-
"databases-and-storage"
4+
"data-science",
5+
"databases-and-storage",
6+
"internet-of-things"
57
]
68
}
79
}

influxdb/variant-data.md

100644100755
File mode changed.

influxdb/variant-meta.md

100644100755
File mode changed.

0 commit comments

Comments
 (0)