Skip to content

Commit 0773efa

Browse files
feat(srvless): remove unecessary buildx mentions
1 parent 8c34ba3 commit 0773efa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pages/serverless-containers/reference-content/containers-limitations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ images.
9898
For example, if you build an image using an ARM CPU, such as Apple Silicon M series, your image will be in the `arm64` architecture, and you will have an error message during deployment.
9999

100100
You must ensure that you build your image to target `amd64` architecture, to acheive this there are multiple solutions:
101-
* You can use the following Docker command: `docker buildx build --platform linux/amd64 .`, or
101+
* You can use the following Docker command: `docker build --platform linux/amd64 .`, or
102102
* You can use an Instance with `amd64` architecture to run your builds.
103103

104104
## Versioning and rollback

pages/serverless-jobs/reference-content/jobs-limitations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ images.
4444
For example, if you build an image using an ARM CPU, such as Apple Silicon M series, your image will be in the `arm64` architecture, and you will have an error message during deployment.
4545

4646
You must ensure that you build your image to target `amd64` architecture, to achieve this there are multiple solutions:
47-
* You can use the following docker command: `docker buildx build --platform linux/amd64 .`, or
47+
* You can use the following docker command: `docker build --platform linux/amd64 .`, or
4848
* You can use an Instance with `amd64` architecture to run your builds.
4949

5050
## Ports restrictions

tutorials/snapshot-instances-jobs/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ Serverless Jobs rely on containers to run in the cloud, and therefore require a
181181
docker build -t rg.fr-par.scw.cloud/your-namespace-name/jobs-snapshot:v1 .
182182

183183
## TIP: for Apple Silicon or other ARM processors, please use the following command as Serverless Jobs supports amd64 architecture
184-
# docker buildx build --platform linux/amd64 -t rg.fr-par.scw.cloud/jobs-snapshot/jobs-snapshot:v1 .
184+
# docker build --platform linux/amd64 -t rg.fr-par.scw.cloud/jobs-snapshot/jobs-snapshot:v1 .
185185
```
186186

187187
4. Run the following command to push the container image to the registry:
@@ -235,4 +235,4 @@ This tutorial is a lightweight example of how to create recurring snapshots of a
235235
- [Serverless Jobs Documentation](/serverless-jobs/how-to/create-job/)
236236
- [Other methods to deploy Jobs](/serverless-jobs/reference-content/deploy-job/)
237237
- [API keys documentation](/iam/how-to/create-api-keys/)
238-
- [CRON schedule reference](/serverless-jobs/reference-content/cron-schedules/)
238+
- [CRON schedule reference](/serverless-jobs/reference-content/cron-schedules/)

0 commit comments

Comments
 (0)