From d6e7ecb48675a04157c3cc2401ba46bcde231d5b Mon Sep 17 00:00:00 2001 From: nausharipov Date: Sun, 24 Apr 2022 11:49:37 +0600 Subject: [PATCH 1/3] initial commit --- website/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/README.md b/website/README.md index d5f9a6f8c397..3a5d35c98958 100644 --- a/website/README.md +++ b/website/README.md @@ -75,6 +75,8 @@ If you're developing the site, you should know a little bit about Hugo and Docsy ## Troubleshooting +Apple Silicon: + ### 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. From a6e87d6692eb3ded7099209373090a38f69b45ef Mon Sep 17 00:00:00 2001 From: nausharipov Date: Sun, 24 Apr 2022 12:09:12 +0600 Subject: [PATCH 2/3] initial text for readme --- website/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/README.md b/website/README.md index 3a5d35c98958..fe9a012ed17e 100644 --- a/website/README.md +++ b/website/README.md @@ -75,7 +75,9 @@ If you're developing the site, you should know a little bit about Hugo and Docsy ## Troubleshooting -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 From 525a8dcd73014f2fcd1149a8bdd1bc8818c1967a Mon Sep 17 00:00:00 2001 From: Darkhan Nausharipov <31556582+nausharipov@users.noreply.github.com> Date: Fri, 13 May 2022 19:10:49 +0600 Subject: [PATCH 3/3] Correct title format Co-authored-by: Danny McCormick --- website/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/README.md b/website/README.md index fe9a012ed17e..0d99ffa6eeff 100644 --- a/website/README.md +++ b/website/README.md @@ -75,6 +75,8 @@ 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"