1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/nodebb
2017-05-08 07:05:07 +08:00
..
arm upgrade nodebb to 1.4.5 2017-03-26 18:04:07 +08:00
docker-compose.yml update redis 2017-01-20 01:29:07 +08:00
docker-entrypoint.sh upgrade nodebb to 1.0.2 2016-04-02 07:52:59 +08:00
Dockerfile swith to new domain: easypi.pro 2017-05-08 07:05:07 +08:00
Dockerfile.debian swith to new domain: easypi.pro 2017-05-08 07:05:07 +08:00
README.md upgrade nodebb to latest 2016-01-16 12:27:53 +08:00

nodebb

NodeBB Forum Software is powered by Node.js and built on either a Redis or MongoDB database.

docker-compose.yml

nodebb:
  image: vimagick/nodebb
  ports:
    - "4567:4567"
  links:
    - redis
  restart: always

redis:
  image: redis
  ports:
    - "127.0.0.1:6379:6379"
  restart: always

up and running

$ docker-compose up -d
$ firefox http://localhost:4567

Host IP or address of your Redis instance: redis