-
Where to get help:
the MyBB Community Forums -
Where to file issues:
https://github.com/mybb/docker/issues -
Maintained by:
the MyBB Team
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.
$ 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.
... via docker stack deploy
or docker-compose
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'