2016-01-16 01:19:42 +02:00
|
|
|
nodebb
|
|
|
|
======
|
|
|
|
|
|
|
|
![](https://badge.imagelayers.io/vimagick/nodebb:latest.svg)
|
|
|
|
|
|
|
|
[NodeBB][1] Forum Software is powered by Node.js and built on either a Redis or MongoDB database.
|
|
|
|
|
2017-05-10 10:17:11 +02:00
|
|
|
Read the [docs][2].
|
|
|
|
|
2016-01-16 01:19:42 +02:00
|
|
|
## up and running
|
|
|
|
|
2017-05-10 10:17:11 +02:00
|
|
|
```bash
|
2022-01-17 10:53:36 +02:00
|
|
|
$ docker-compose run --rm --service-ports nodebb bash
|
|
|
|
>>> ./nodebb --config config/config.json setup
|
|
|
|
>>> exit
|
2016-01-16 01:19:42 +02:00
|
|
|
$ docker-compose up -d
|
|
|
|
$ firefox http://localhost:4567
|
|
|
|
```
|
|
|
|
|
2016-01-16 06:27:53 +02:00
|
|
|
> Host IP or address of your Redis instance: `redis`
|
2016-01-16 06:07:47 +02:00
|
|
|
|
2017-05-10 10:17:11 +02:00
|
|
|
## software upgrade
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker-compose pull nodebb
|
2022-01-17 10:53:36 +02:00
|
|
|
$ docker-compose exec nodebb bash
|
2018-08-25 05:34:33 +02:00
|
|
|
>>> ./nodebb upgrade
|
2017-05-10 10:17:11 +02:00
|
|
|
>>> exit
|
|
|
|
```
|
|
|
|
|
2016-01-16 01:19:42 +02:00
|
|
|
[1]: https://nodebb.org/
|
2018-08-25 05:34:33 +02:00
|
|
|
[2]: https://docs.nodebb.org/
|