Skip to content

Commit f244a52

Browse files
authored
Merge pull request #6198 from influxdata/hotfix-v1-version
hotfix(v1): Docker latest-patch
2 parents d7151ce + 92f4afb commit f244a52

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

content/influxdb/v1/introduction/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,12 @@ Quick start:
210210

211211
```bash
212212
# Pull the latest InfluxDB v1.x image
213-
docker pull influxdb:{{< latest-patch version="1" >}}
213+
docker pull influxdb:{{< latest-patch >}}
214214

215215
# Start InfluxDB with persistent storage
216216
docker run -p 8086:8086 \
217217
-v $PWD/data:/var/lib/influxdb \
218-
influxdb:{{< latest-patch version="1" >}}
218+
influxdb:{{< latest-patch >}}
219219
```
220220

221221
{{% /tab-content %}}

content/influxdb/v1/introduction/install/docker.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This guide covers Docker installation, configuration, and initialization options
2727
### Pull the InfluxDB v1.x image
2828

2929
```bash
30-
docker pull influxdb:{{< latest-patch version="1" >}}
30+
docker pull influxdb:{{< latest-patch >}}
3131
```
3232

3333
### Start InfluxDB
@@ -37,7 +37,7 @@ Start a basic InfluxDB container with persistent storage:
3737
```bash
3838
docker run -p 8086:8086 \
3939
-v $PWD/data:/var/lib/influxdb \
40-
influxdb:{{< latest-patch version="1" >}}
40+
influxdb:{{< latest-patch >}}
4141
```
4242

4343
InfluxDB is now running and available at http://localhost:8086.
@@ -54,15 +54,15 @@ docker run -p 8086:8086 \
5454
-e INFLUXDB_REPORTING_DISABLED=true \
5555
-e INFLUXDB_HTTP_AUTH_ENABLED=true \
5656
-e INFLUXDB_HTTP_LOG_ENABLED=true \
57-
influxdb:{{< latest-patch version="1" >}}
57+
influxdb:{{< latest-patch >}}
5858
```
5959

6060
### Using a configuration file
6161

6262
Generate a default configuration file:
6363

6464
```bash
65-
docker run --rm influxdb:{{< latest-patch version="1" >}} influxd config > influxdb.conf
65+
docker run --rm influxdb:{{< latest-patch >}} influxd config > influxdb.conf
6666
```
6767

6868
Start InfluxDB with your custom configuration:
@@ -71,7 +71,7 @@ Start InfluxDB with your custom configuration:
7171
docker run -p 8086:8086 \
7272
-v $PWD/influxdb.conf:/etc/influxdb/influxdb.conf:ro \
7373
-v $PWD/data:/var/lib/influxdb \
74-
influxdb:{{< latest-patch version="1" >}}
74+
influxdb:{{< latest-patch >}}
7575
```
7676

7777
## Initialize InfluxDB
@@ -91,7 +91,7 @@ docker run -p 8086:8086 \
9191
-e INFLUXDB_HTTP_AUTH_ENABLED=true \
9292
-e INFLUXDB_ADMIN_USER=admin \
9393
-e INFLUXDB_ADMIN_PASSWORD=supersecretpassword \
94-
influxdb:{{< latest-patch version="1" >}}
94+
influxdb:{{< latest-patch >}}
9595
```
9696

9797
Environment variables for user creation:
@@ -128,7 +128,7 @@ Run with initialization scripts:
128128
docker run -p 8086:8086 \
129129
-v $PWD/data:/var/lib/influxdb \
130130
-v $PWD/init-scripts:/docker-entrypoint-initdb.d \
131-
influxdb:{{< latest-patch version="1" >}}
131+
influxdb:{{< latest-patch >}}
132132
```
133133

134134
Supported script types:

0 commit comments

Comments
 (0)