Skip to content

Latest commit

 

History

History
58 lines (43 loc) · 2.16 KB

README.md

File metadata and controls

58 lines (43 loc) · 2.16 KB

Supported tags and respective Dockerfile links

Quick reference

What is MyBB?

MyBB is the free and open source, intuitive, extensible, and incredibly powerful forum software you've been looking for. With everything from forums to threads, posts to private messages, search to profiles, and reputation to warnings, MyBB features everything you need to run an efficient and captivating community. Through plugins and themes, you can extend MyBB's functionality to build your community exactly as you'd like it. Learn more at MyBB.com.

wikipedia.org/wiki/MyBB

logo

How to use this image

$ docker container run mybb/mybb:latest

This image only provides a MyBB service container running PHP7.X-FPM. There are no database, cache or nginx container(s) provided, you'll need to use Docker Compose or Stack to wrange those additional services to your MyBB instance. Please see the provided mysqli/pgsql Compose example files in the official repository, here. A very basic example has also been provided below.

Example stack.yml for mybb:

services:
  mybb:
    image: mybb/mybb:latest
    volumes:
    - ${PWD}/mybb:/var/www/html:rw
  nginx:
    image: nginx:mainline
    ports:
    - published: 8080
      target: 80
    volumes:
    - ${PWD}/mybb:/var/www/html:ro
  postgresql:
    environment:
      POSTGRES_DB: mybb
      POSTGRES_PASSWORD: changeme
      POSTGRES_USER: mybb
    image: postgres:10.4
    volumes:
    - ${PWD}/postgres/data:/var/lib/postgresql/data:rw
version: '3.6'