Skip to content

Commit 3b5a0ea

Browse files
committed
updates to starting influxdb3 enterprise section
1 parent 513bcea commit 3b5a0ea

File tree

1 file changed

+8
-8
lines changed
  • content/shared/influxdb3-get-started

1 file changed

+8
-8
lines changed

content/shared/influxdb3-get-started/setup.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -368,17 +368,17 @@ You can obtain a license key from the [InfluxData pricing page](https://www.infl
368368

369369
### Start InfluxDB 3 Enterprise with your license
370370

371-
To start InfluxDB 3 Enterprise in a Docker container, set the `INFLUX_LICENSE_KEY` environment variable:
371+
Use the following `docker run` command to start an InfluxDB 3 Enterprise container using your email address to activate a trial or at-home license.
372372

373-
{{% code-placeholders "YOUR_LICENSE_KEY" %}}
373+
{{% code-placeholders "YOUR_EMAIL_ADDRESS" %}}
374374

375375
```bash
376376
docker run -d --name influxdb3-enterprise \
377-
-v $PWD/data:/var/lib/influxdb3 \
378-
-v $PWD/plugins:/plugins \
379-
-p 8086:8086 \
380-
-e INFLUX_LICENSE_KEY=YOUR_LICENSE_KEY \
381-
influxdb:enterprise \
377+
-v "$PWD/data:/var/lib/influxdb3" \
378+
-v "$PWD/plugins:/plugins" \
379+
-p 8181:8181 \
380+
-e INFLUXDB3_ENTERPRISE_LICENSE_EMAIL=YOUR_EMAIL_ADDRESS \
381+
quay.io/influxdb/influxdb3-enterprise:latest \
382382
serve \
383383
--cluster-id cluster1 \
384384
--node-id node1 \
@@ -389,7 +389,7 @@ docker run -d --name influxdb3-enterprise \
389389

390390
{{% /code-placeholders %}}
391391

392-
- Replace `YOUR_LICENSE_KEY` with your actual InfluxDB 3 Enterprise license key.
392+
- Replace `YOUR_EMAIL_ADDRESS` with the email you want to associate with the license.
393393

394394
Once the Docker container is running, create an admin token to authenticate requests:
395395

0 commit comments

Comments
 (0)