From a37d324791b5e67d1b78c7e9cc0aaa5653b42826 Mon Sep 17 00:00:00 2001 From: Darkhan Nausharipov <31556582+nausharipov@users.noreply.github.com> Date: Tue, 17 May 2022 20:41:32 +0600 Subject: [PATCH] README update for the Docker Error 255 during Website launch on Apple Silicon (#17456) Co-authored-by: Danny McCormick --- website/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/README.md b/website/README.md index d5f9a6f8c397..0d99ffa6eeff 100644 --- a/website/README.md +++ b/website/README.md @@ -75,6 +75,12 @@ If you're developing the site, you should know a little bit about Hugo and Docsy ## Troubleshooting +### Docker Error 255 on Apple Silicon + +To fix the Docker Error 255 during the Website launch on Apple Silicon: +- Open website/Dockerfile +- Replace "FROM debian:stretch-slim" with "FROM --platform=linux/amd64 debian:stretch-slim" + ### Hugo server does not reload static files The Hugo dev server waits for changes in site content, static files, configuration, and other resources. On change, the server rebuilds and reloads the site in your browser. If you're making changes to static files, and those changes are detected by the server but don't appear in the browser, you may have a caching issue.