All Projects → mybb → docker

mybb / docker

Licence: BSD-3-Clause license
The official Dockerfile for the MyBB forum software.

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to docker

Vmoex Framework
一个开源的二次元向的社区程序。
Stars: ✭ 198 (+371.43%)
Mutual labels:  forum
Djangobb
DjangoBB mirror. DjangoBB is a quick and simple forum which uses the Django Framework (written in Python language). Abbreviation DjangoBB stands for Django Bulletin Board. DjangoBB is distributed under the BSD license.
Stars: ✭ 232 (+452.38%)
Mutual labels:  forum
Forum
Django forum clone from F2E.im support SAE
Stars: ✭ 252 (+500%)
Mutual labels:  forum
Refire Forum
Serverless discussion forum built with React, Redux and Firebase
Stars: ✭ 206 (+390.48%)
Mutual labels:  forum
Collipa
The source code of Collipa
Stars: ✭ 217 (+416.67%)
Mutual labels:  forum
Forum
Ama Laravel? Torne se um Jedi e Ajude outros Padawans
Stars: ✭ 233 (+454.76%)
Mutual labels:  forum
Rengorum
🚀 Forum app built in React, Redux & Django
Stars: ✭ 194 (+361.9%)
Mutual labels:  forum
CodeFec
CodeFec
Stars: ✭ 18 (-57.14%)
Mutual labels:  forum
Phpdish
🏠 PHPDish is a powerful forum system written in PHP. It is based on the Symfony PHP Framework.
Stars: ✭ 225 (+435.71%)
Mutual labels:  forum
Rocboss Old
High load, simple micro community software
Stars: ✭ 247 (+488.1%)
Mutual labels:  forum
Nobibi
一款基于Next.js+mongo的轻量级开源社区(open community by Next.js & mongo)
Stars: ✭ 209 (+397.62%)
Mutual labels:  forum
Iisns
sns 开放社区
Stars: ✭ 217 (+416.67%)
Mutual labels:  forum
Natika
Simple PHP Forum system for developers.
Stars: ✭ 236 (+461.9%)
Mutual labels:  forum
Symphony
🎶 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台。
Stars: ✭ 13,080 (+31042.86%)
Mutual labels:  forum
BookForum
A light-weight forum powered by Django. It supports many of the necessary functions out of the box.
Stars: ✭ 21 (-50%)
Mutual labels:  forum
Seamly2d
Open source patternmaking software.
Stars: ✭ 197 (+369.05%)
Mutual labels:  forum
Tch Nginx Gui
Modified file to apply to a stock technicolor GUI
Stars: ✭ 231 (+450%)
Mutual labels:  forum
mybb-amnesia
An attempt at making MyBB more GDPR compliant and to give users a greater control over their data stored.
Stars: ✭ 26 (-38.1%)
Mutual labels:  mybb
yibu.io
A simple and elegant forum, inspired from Reddit. https://yibuio.herokuapp.com/
Stars: ✭ 16 (-61.9%)
Mutual labels:  forum
Roo
😋 美观大气的论坛社区
Stars: ✭ 238 (+466.67%)
Mutual labels:  forum

Docker Pulls Docker Stars

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

... 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-alpine
    ports:
    - published: 8080
      target: 80
    volumes:
    - ${PWD}/nginx:/etc/nginx/conf.d:ro
    - ${PWD}/mybb:/var/www/html:ro

  postgresql:
    environment:
      POSTGRES_DB: mybb
      POSTGRES_PASSWORD: changeme
      POSTGRES_USER: mybb
    image: postgres:14-alpine
    volumes:
    - ${PWD}/postgres/data:/var/lib/postgresql/data:rw

version: '3.8'

Note, you'll also need a virtual host configuration file for the provided nginx container. You can find a very basic example here. Create this file as nginx/default.conf, respective to the location of your docker-compose.yml file.

You should note that static content such as images and JavaScript or CSS files must be cross-mounted between the mybb and nginx containers - as PHP-FPM is not capable of serving those natively.

Preserving existing files

If you wish to run this image and preserve any updated lang or config files, you can add the following flag:

docker run mybb/mybb --skip-old-files php-fpm

or, within your compose file, specify the following command argument:

services:
  mybb:
    image: mybb/mybb:latest
    command: --skip-old-files php-fpm
    volumes:
    - ${PWD}/mybb:/var/www/html:rw

    ...

How to build this image

You must provide four build-time arguments when building this Docker image; BUILD_AUTHORS, BUILD_DATE, BUILD_SHA512SUM and BUILD_VERSION.

docker build \
  --build-arg BUILD_AUTHORS="Kane 'kawaii' Valentine <[email protected]>" \
  --build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
  --build-arg BUILD_SHA512SUM=be3bdec9617050abbabbfcfa40e9cd145db3a57ae70e740bc62d807b04c08a5fa42ac690a5502c344f0f7452276aa0f3802501e6d62fa76edc64ac36da25b3cd \
  --build-arg BUILD_VERSION=1830 \
  --tag mybb/mybb:1.8 \
  --tag mybb/mybb:1.8.30 \
  --tag mybb/mybb:latest \
  $PWD

The resulting image can then be pushed to the mybb/mybb Docker Hub repository:

docker push mybb/mybb:1.8.30
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].