phpBB

Flat-forum bulletin board software solution that can be used to stay in touch with a group of people or can power your entire website.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3.3"
services:
  phpbb:
    container_name: phpbb
    image: bitnami/phpbb:latest
    ports:
      - 8080:8080
      - 8443:8443
    environment:
      - ALLOW_EMPTY_PASSWORD=yes
      - PHPBB_DATABASE_USER=bn_phpbb
      - PHPBB_DATABASE_PASSWORD=bitnami
      - PHPBB_DATABASE_NAME=bitnami_phpbb
    networks:
      - phpbb-network
    volumes:
      - ./phpbb_data:/bitnami/phpbb
    restart: always
 
networks:
  phpbb-network:
    external: true

Resources

Website: https://www.phpbb.com/

GitHub: https://github.com/phpbb/phpbb

Docker Hub: https://hub.docker.com/r/bitnami/phpbb

Configuration: See the Docker Hub page