Who is using NodeBB?

Pinned General Discussion

Suggested Topics


  • 1 Votes
    4 Posts
    588 Views

    @julian 谢谢! thank you

  • 5 Votes
    3 Posts
    468 Views

    Awesome.

    Thanks bunches for this. 👍

  • 0 Votes
    3 Posts
    5k Views

    @a_5mith

    Yes I have already checked it. I have found a docker image created by @nopz, this one is up-to-date. But the official docker image in not! Maybe you (nodebb) should give access to a dockerfile to allow anyone to build a nodebb docker image. EDIT I found the dockerfile, and the problem about this outdated version here. It's outdated because the dockerfile build the image with the v0.5.x version :

    FROM centos:centos7 MAINTAINER NodeBB Docker Team <[email protected]> # install main packages: RUN yum -y update ; yum clean all RUN yum -y install epel-release tar ; yum clean all RUN yum -y install wget ; yum clean all RUN yum -y groupinstall "Development Tools" RUN yum -y install nodejs git ImageMagick npm RUN yum -y install openssl openssl-devel # clone nodebb and install it RUN cd /opt ; git clone -b v0.5.x https://github.com/NodeBB/NodeBB nodebb RUN cd /opt/nodebb ; npm install # Create a nodebb volume VOLUME /opt/nodebb # Define a working directory WORKDIR /opt/nodebb # Expose ports EXPOSE 80 EXPOSE 443 EXPOSE 4567 CMD [ "node", "app.js" ]

    You should (NodeBB) update this dockerfile !

    End of the EDIT

    Now, with the nopz/nodebb image I just had a problem about plugin persistence. But the first installation is so much easier and automatic with just one docker.

    Thanks for your answer by the way 🙂

  • 0 Votes
    2 Posts
    1k Views

    Your config file looks good, paste output of this command to rule out any user error?

    cat /home/javier/proyectos/foros/config.json

  • 0 Votes
    1 Posts
    1k Views

    I'm starting using NodeBB. It works great till so far.
    The most important functionality of my site is email notification. The only way I know to do this is asking everyone to watch a thread. But this is not straight forward.
    What I want is some utilities that can send emails to all the users in a group. Is it possible with current version?

    P.S. I think notification to all users when new post in a certain category suffices.