Forem Creators and Builders 🌱

Discussion on: Exec format error

Collapse
 
derekenos profile image
derekenos

I've made some recent progress in getting Forem to run on a Raspberry Pi 4.

The major things I needed to do were:

It's a work-in-progress, and the Docker image takes approx. 1.5 hours to build on my pi, but these steps should result in a development build running on the rpi4:

git clone --depth=1 --branch=raspberrypi4 https://github.com/derekenos/forem
cd forem
docker build -f Dockerfile-rpi4-development -t quay.io/forem/forem:development .
docker-compose up
Enter fullscreen mode Exit fullscreen mode
Collapse
 
thomasbnt profile image
Thomas Bnt

Awesome!