1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00

update nodebb

This commit is contained in:
kev 2017-05-10 16:17:11 +08:00
parent d77b2a55c7
commit c71268de34
2 changed files with 22 additions and 2 deletions

@ -5,31 +5,49 @@ nodebb
[NodeBB][1] Forum Software is powered by Node.js and built on either a Redis or MongoDB database.
Read the [docs][2].
## docker-compose.yml
```
```yaml
nodebb:
image: vimagick/nodebb
ports:
- "4567:4567"
links:
- redis
volumes:
- ./data:/var/lib/nodebb
restart: always
redis:
image: redis
ports:
- "127.0.0.1:6379:6379"
volumes:
- ./data:/data
restart: always
```
## up and running
```
```bash
$ docker-compose up -d
$ vim data/config.json
$ docker-compose restart nodebb
$ firefox http://localhost:4567
```
> Host IP or address of your Redis instance: `redis`
## software upgrade
```bash
$ docker-compose pull nodebb
$ docker-compose exec nodebb sh
>>> ./nodebb build
>>> exit
```
[1]: https://nodebb.org/
[2]: https://docs.nodebb.org/en/latest/

@ -4,6 +4,8 @@ nodebb:
- "4567:4567"
links:
- redis
volumes:
- ./data:/var/lib/nodebb
restart: always
redis: