An arm64 docker image for the mybb forum server made by drifty
525
The official images don't have an arm64 version, and I needed one for my Pi, so I cloned the repo and built the image myself. Useful for anyone with an arm64 processor who wants to run mybb.
Also available on the GitHub Docker Registry - ghcr.io/driftywinds/mybb:latest
How to use: -
Create a folder where the compose file and the data directory will be stored.
In the directory, use these commands and give access permissions to the "mybb" directory to the webserver: -
sudo touch ./mybb/mybb.sqlite
sudo chown -R www-data:www-data ./mybb
sudo chmod -R 777 ./mybb
services:
mybb:
image: driftywinds/mybb:latest
container_name: mybb
volumes:
- ./mybb:/var/www/html
apache:
image: php:7.4-apache
container_name: apache
ports:
- '3025:80'
volumes:
- ./mybb:/var/www/html
restart: unless-stopped
version: '3.8'
Type docker compose up -d and press enter.
If this is your first time setting it up, it will ask you the location of the database during initial setup. Just provide it this file - ./mybb/mybb.sqlite
You can check logs live with this command: -
docker logs <container name> -f
Content type
Image
Digest
sha256:57d3781ff…
Size
36.3 MB
Last updated
about 1 year ago
docker pull driftywinds/mybb