Oh, thanks a lot for your helping. 🙂
get v0.7.X dockerfile
-
Hi, I just ran NodeBB using Docker successfully and found it is NodeBB v0.5.4. How can I get a newer version of Dockerfile, such as v0.6.1 or v.0.7.X? Thanks~
-
Seems this forum is not helpful. I'm also a newbie. After some investigation, I think you can build your own docker image for nodebb v0.6.x. I'm not sure which git branch corresponding to v0.7.x.
Get a sample docker file from
change the line:
RUN cd /opt ; git clone -b v0.5.x https://github.com/NodeBB/NodeBB nodebb
to
RUN cd /opt ; git clone -b v0.6.x https://github.com/NodeBB/NodeBB nodebbfollow the instruction on:
https://docs.docker.com/userguide/dockerimages/#building-an-image-from-a-dockerfile -
@Gordon-Gu @leemy Sorry about that -- we don't typically use Docker, so it is a community-managed distribution of NodeBB.
You can try
-b master
to set upv0.7.0-dev
-
Thanks a lot! It works