Skip to content

Commit 82f097a

Browse files
feat(srvless): remove unecessary buildx mentions (#4867)
* feat(srvless): remove unecessary buildx mentions * Update pages/serverless-containers/reference-content/containers-limitations.mdx Co-authored-by: Jessica <[email protected]> --------- Co-authored-by: Jessica <[email protected]>
1 parent 05ddda2 commit 82f097a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ When container CPU and/or memory are not provided by the client, these default v
105105
Scaleway Containers only supports `amd64` [architecture](https://github.com/docker-library/official-images?tab=readme-ov-file#architectures-other-than-amd64) for
106106
images.
107107

108-
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.
108+
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.
109109

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

114114
## 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)