NuSkooler / enigma-bbs

ENiGMA½ BBS Software
https://nuskooler.github.io/enigma-bbs/
BSD 2-Clause "Simplified" License
531 stars 104 forks source link

exec format error on armv7? #544

Open thegreekgeek opened 1 month ago

thegreekgeek commented 1 month ago

Describe the Bug I get an exec format error when I try to spin up a container from a compose file on my RaspberryPi 3B+.

To Reproduce Made a docker compose file based off the run command in the documentation, added a platform entry (Linux/arm/v7) and container_name.

Expected Behavior Container to load

Actual Behavior "exec /enigma-bbs/docker/bin/docker-entrypoint.sh: exec format error"

Screenshots If applicable, add screenshots to help explain your problem.

Environment

NuSkooler commented 1 month ago

@thegreekgeek sounds like you need to add a shebang and mark the script executable:

#/usr/bin/env bash

and

chmod +x docker-entrypoint.sh