Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README update for the Docker Error 255 during Website launch on Apple Silicon #17456

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
nausharipov marked this conversation as resolved.
Show resolved Hide resolved
- 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.
Expand Down