Sign inSign up

driftywinds/mybb

By driftywinds

Updated about 1 year ago

An arm64 docker image for the mybb forum server made by drifty

Image
API management
Web servers
Content management system
0

525

driftywinds/mybb repository overview

An arm64 docker image for mybb forum software made by drifty

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
  • Use this compose file as a template (change values according to your setup): -
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

Tag summary

Content type

Image

Digest

sha256:57d3781ff

Size

36.3 MB

Last updated

about 1 year ago

docker pull driftywinds/mybb