dockerfiles/phpbb
kev d47dcc9108 fix phpbb 2018-10-25 22:48:19 +08:00
..
Dockerfile fix phpbb 2018-10-25 22:48:19 +08:00
README.md update phpbb 2017-05-16 15:35:48 +08:00
docker-compose.yml upgrade phpbb to 3.2.0 2017-05-16 15:17:26 +08:00

phpBB

phpBB is a free 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.

This docker image support mysqli/postgres/sqlite3. If you choose sqlite3, please use /var/www/store/phpbb.db as dbpath. And it has no volumes, please use phpBB control panel to backup database.

docker-compose.yml

phpbb:
  image: vimagick/phpbb
  ports:
    - "8000:80"
  volumes:
    - ./data:/var/www/store
  restart: always

up and running

# create volume
$ mkdir -m 777 data

# run container
$ docker-compose up -d

# setup forum
$ firefox http://localhost:8000/install

# view database
$ sqlite3 data/phpbb.db
>>> .help
>>> .quit