Hello !
I'm a french student and I discovered Docker few month ago. I think i'ts very usefull for lot of things and to have turnkey solutions. So, when I discovered NodeBB I have wanted to use it with docker.
But, It seems to does not work properly : Once I can log in, and install plugin, an other time I can't log in : forbidden
, an other time again, the admin console seems to does not work (I can't access to differents sub-menus, I don't have any graph).
Moreover, the admin area says to me You are running NodeBB v0.5.7.
and I don't know how to upgrade NodeBB except using docker pull
(And I don't have the newer version with that). Also, I start NodeBB with a docker volume (use to data persistence even if the docker is stopped or/and removed) and some plugin are gone when I stop / remove / start again NodeBB (and redis).
I have tried so many times, using centos version and ubuntu version.
Can someone help me about install and run correctly NodeBB ?
Here, my commands to start NodeBB with docker :
docker pull nodebb/docker:centos-redis
docker pull nodebb/docker:centos
docker run \
--name nodebb-redis \
--restart=always \
--volume /home/nodeBB/redis/data:/data \
-d -p 6379:6379 \
nodebb/docker:centos-redis
docker run \
--name forum-nodebb \
--restart=always \
--link nodebb-redis:redis \
--env 'VIRTUAL_HOST=forum.mydomain.com' \ # It's for my nginx reverse proxy
--env 'VIRTUAL_PORT=4567' \ # The same : to access to NodeBB with https://forum.mydomain.com (without specify a port)
--env 'LETSENCRYPT_HOST=forum.mydomain.com' \ # It's for my nginx reverse proxy companion (let's encrypt cert)
--env '[email protected]' \ # The same
--volume=/home/nodeBB/data:/data \ # Docker Volume for persistance
-P -t -i \
nodebb/docker:centos