fix: update to Docker in install pages as well
parent
c2ad2e5ba2
commit
033e89841a
|
@ -139,7 +139,7 @@ The image is available for x86_64 (AMD64) and ARM64 architectures.
|
||||||
|
|
||||||
<!--pytest.mark.skip-->
|
<!--pytest.mark.skip-->
|
||||||
```bash
|
```bash
|
||||||
docker pull quay.io/influxdb/influxdb3-{{< product-key >}}:latest
|
docker pull influxdb:3-{{< product-key >}}
|
||||||
```
|
```
|
||||||
|
|
||||||
Docker automatically pulls the appropriate image for your system architecture.
|
Docker automatically pulls the appropriate image for your system architecture.
|
||||||
|
@ -150,14 +150,14 @@ To specify the system architecture, use platform-specific tags--for example:
|
||||||
# For x86_64/AMD64
|
# For x86_64/AMD64
|
||||||
docker pull \
|
docker pull \
|
||||||
--platform linux/amd64 \
|
--platform linux/amd64 \
|
||||||
quay.io/influxdb/influxdb3-{{< product-key >}}:latest
|
influxdb:3-{{< product-key >}}
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# For ARM64
|
# For ARM64
|
||||||
docker pull \
|
docker pull \
|
||||||
--platform linux/arm64 \
|
--platform linux/arm64 \
|
||||||
quay.io/influxdb/influxdb3-{{< product-key >}}:latest
|
influxdb:3-{{< product-key >}}
|
||||||
```
|
```
|
||||||
|
|
||||||
> [!Note]
|
> [!Note]
|
||||||
|
@ -173,10 +173,11 @@ quay.io/influxdb/influxdb3-{{< product-key >}}:latest
|
||||||
services:
|
services:
|
||||||
influxdb3-{{< product-key >}}:
|
influxdb3-{{< product-key >}}:
|
||||||
container_name: influxdb3-{{< product-key >}}
|
container_name: influxdb3-{{< product-key >}}
|
||||||
image: quay.io/influxdb/influxdb3-{{< product-key >}}:latest
|
image: influxdb:3-{{< product-key >}}
|
||||||
ports:
|
ports:
|
||||||
- 9999:9999
|
- 9999:9999
|
||||||
command:
|
command:
|
||||||
|
- influxdb3
|
||||||
- serve
|
- serve
|
||||||
- --node-id=node0
|
- --node-id=node0
|
||||||
- --object-store=file
|
- --object-store=file
|
||||||
|
|
|
@ -131,7 +131,7 @@ source ~/.zshrc
|
||||||
|
|
||||||
## Docker image
|
## Docker image
|
||||||
|
|
||||||
Use the `influxdb3-{{< product-key >}}` Docker image to deploy {{< product-name >}} in a
|
Use the `influxdb:3-{{< product-key >}}` Docker image to deploy {{< product-name >}} in a
|
||||||
Docker container.
|
Docker container.
|
||||||
The image is available for x86_64 (AMD64) and ARM64 architectures.
|
The image is available for x86_64 (AMD64) and ARM64 architectures.
|
||||||
|
|
||||||
|
@ -139,7 +139,7 @@ The image is available for x86_64 (AMD64) and ARM64 architectures.
|
||||||
|
|
||||||
<!--pytest.mark.skip-->
|
<!--pytest.mark.skip-->
|
||||||
```bash
|
```bash
|
||||||
docker pull quay.io/influxdb/influxdb3-{{< product-key >}}:latest
|
docker pull influxdb:3-{{< product-key >}}
|
||||||
```
|
```
|
||||||
|
|
||||||
Docker automatically pulls the appropriate image for your system architecture.
|
Docker automatically pulls the appropriate image for your system architecture.
|
||||||
|
@ -150,14 +150,14 @@ To specify the system architecture, use platform-specific tags--for example:
|
||||||
# For x86_64/AMD64
|
# For x86_64/AMD64
|
||||||
docker pull \
|
docker pull \
|
||||||
--platform linux/amd64 \
|
--platform linux/amd64 \
|
||||||
quay.io/influxdb/influxdb3-{{< product-key >}}:latest
|
influxdb:3-{{< product-key >}}
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# For ARM64
|
# For ARM64
|
||||||
docker pull \
|
docker pull \
|
||||||
--platform linux/arm64 \
|
--platform linux/arm64 \
|
||||||
quay.io/influxdb/influxdb3-{{< product-key >}}:latest
|
influxdb:3-{{< product-key >}}
|
||||||
```
|
```
|
||||||
|
|
||||||
> [!Note]
|
> [!Note]
|
||||||
|
@ -173,10 +173,11 @@ quay.io/influxdb/influxdb3-{{< product-key >}}:latest
|
||||||
services:
|
services:
|
||||||
influxdb3-{{< product-key >}}:
|
influxdb3-{{< product-key >}}:
|
||||||
container_name: influxdb3-{{< product-key >}}
|
container_name: influxdb3-{{< product-key >}}
|
||||||
image: quay.io/influxdb/influxdb3-{{< product-key >}}:latest
|
image: influxdb:3-{{< product-key >}}
|
||||||
ports:
|
ports:
|
||||||
- 9999:9999
|
- 9999:9999
|
||||||
command:
|
command:
|
||||||
|
- influxdb3
|
||||||
- serve
|
- serve
|
||||||
- --node-id=node0
|
- --node-id=node0
|
||||||
- --cluster-id=cluster0
|
- --cluster-id=cluster0
|
||||||
|
|
Loading…
Reference in New Issue