Skip to content

Commit ad394b9

Browse files
authored
Merge pull request #5852 from influxdata/5850-influxdb3-coreenterprise-install-docs-say-docker-x86-but-arm-images-are-available
chore(mono): Update architectures for Docker images.
2 parents 9d699e5 + 5872d8c commit ad394b9

File tree

4 files changed

+53
-7
lines changed

4 files changed

+53
-7
lines changed

content/influxdb3/core/install.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ Use the InfluxDB 3 quick install script to install {{< product-name >}} on
4444
{{< product-name >}} package on your local machine:
4545

4646
```bash
47-
curl -O https://www.influxdata.com/d/install_influxdb3.sh && sh install_influxdb3.sh
47+
curl -O https://www.influxdata.com/d/install_influxdb3.sh \
48+
&& sh install_influxdb3.sh
4849
```
4950

5051
2. Verify that installation completed successfully:
@@ -131,9 +132,28 @@ source ~/.zshrc
131132
132133
Use the `influxdb3-core` Docker image to deploy {{< product-name >}} in a
133134
Docker container.
135+
The image is available for x86_64 (AMD64) and ARM64 architectures.
134136
135137
```bash
136138
docker pull quay.io/influxdb/influxdb3-core:latest
137139
```
138140
141+
Docker automatically pulls the appropriate image for your system architecture.
142+
143+
You can also explicitly specify the architecture by using platform-specific tags:
144+
145+
```bash
146+
# For x86_64/AMD64
147+
docker pull \
148+
--platform linux/amd64 \
149+
quay.io/influxdb/influxdb3-core:latest
150+
```
151+
152+
```bash
153+
# For ARM64
154+
docker pull \
155+
--platform linux/arm64 \
156+
quay.io/influxdb/influxdb3-core:latest
157+
```
158+
139159
{{< page-nav next="/influxdb3/core/get-started/" nextText="Get started with InfluxDB 3 Core" >}}

content/influxdb3/enterprise/install.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ Use the InfluxDB 3 quick install script to install {{< product-name >}} on
4444
{{< product-name >}} package on your local machine:
4545

4646
```bash
47-
curl -O https://www.influxdata.com/d/install_influxdb3.sh && sh install_influxdb3.sh enterprise
47+
curl -O https://www.influxdata.com/d/install_influxdb3.sh \
48+
&& sh install_influxdb3.sh enterprise
4849
```
4950

5051
2. Verify that installation completed successfully:
@@ -131,9 +132,28 @@ source ~/.zshrc
131132
132133
Use the `influxdb3-enterprise` Docker image to deploy {{< product-name >}} in a
133134
Docker container.
135+
The image is available for x86_64 (AMD64) and ARM64 architectures.
134136
135137
```bash
136138
docker pull quay.io/influxdb/influxdb3-enterprise:latest
137139
```
138140
139-
{{< page-nav next="/influxdb3/enterprise/get-started/" nextText="Get started with InfluxDB 3 Enterprise" >}}
141+
Docker automatically pulls the appropriate image for your system architecture.
142+
143+
You can also explicitly specify the architecture by using platform-specific tags:
144+
145+
```bash
146+
# For x86_64/AMD64
147+
docker pull \
148+
--platform linux/amd64 \
149+
quay.io/influxdb/influxdb3-enterprise:latest
150+
```
151+
152+
```bash
153+
# For ARM64
154+
docker pull \
155+
--platform linux/arm64 \
156+
quay.io/influxdb/influxdb3-enterprise:latest
157+
```
158+
159+
{{< page-nav next="/influxdb3/core/get-started/" nextText="Get started with InfluxDB 3 Enterprise" >}}

content/shared/v3-core-get-started/_index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ This guide covers InfluxDB 3 Core (the open source release), including the follo
6262
{{% tabs %}}
6363
[Linux or macOS](#linux-or-macos)
6464
[Windows](#windows)
65-
[Docker (x86)](#docker-x86)
65+
[Docker](#docker)
6666
{{% /tabs %}}
6767
{{% tab-content %}}
6868
<!--------------- BEGIN LINUX AND MACOS -------------->
@@ -101,7 +101,10 @@ Download and install the {{% product-name %}} [Windows (x86) binary](https://dl.
101101
{{% tab-content %}}
102102
<!--------------- BEGIN DOCKER -------------->
103103

104-
Pull the [`influxdb3-core` image](https://quay.io/repository/influxdb/influxdb3-core?tab=tags&tag=latest):
104+
The [`influxdb3-core` image](https://quay.io/repository/influxdb/influxdb3-core?tab=tags&tag=latest)
105+
is available for x86_64 (AMD64) and ARM64 architectures.
106+
107+
Pull the image:
105108

106109
```bash
107110
docker pull quay.io/influxdb/influxdb3-core:latest

content/shared/v3-enterprise-get-started/_index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ This guide covers Enterprise as well as InfluxDB 3 Core, including the following
5353
{{% tabs %}}
5454
[Linux or macOS](#linux-or-macos)
5555
[Windows](#windows)
56-
[Docker (x86)](#docker-x86)
56+
[Docker](#docker)
5757
{{% /tabs %}}
5858
{{% tab-content %}}
5959
<!--------------- BEGIN LINUX AND MACOS -------------->
@@ -92,7 +92,10 @@ Download and install the {{% product-name %}} [Windows (x86) binary](https://dl.
9292
{{% tab-content %}}
9393
<!--------------- BEGIN DOCKER -------------->
9494

95-
Pull the [`influxdb3-enterprise` image](https://quay.io/repository/influxdb/influxdb3-enterprise?tab=tags&tag=latest):
95+
The [`influxdb3-enterprise` image](https://quay.io/repository/influxdb/influxdb3-enterprise?tab=tags&tag=latest)
96+
is available for x86_64 (AMD64) and ARM64 architectures.
97+
98+
Pull the image:
9699

97100
```bash
98101
docker pull quay.io/influxdb/influxdb3-enterprise:latest

0 commit comments

Comments
 (0)