Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

nodeBB docker, how to install it

Featured Replies

Turn on additional search results from dockerhub within CA's general settings.  Then search for  nodebb/docker on the apps tab, and add the container.  CA converts it fine.  Add in whatever extra parameters you need, along with the tag you're going to use and you're off to the races

  • Author
1 hour ago, Squid said:

Turn on additional search results from dockerhub within CA's general settings.  Then search for  nodebb/docker on the apps tab, and add the container.  CA converts it fine.  Add in whatever extra parameters you need, along with the tag you're going to use and you're off to the races

 

thanks a lot!!!

 

but im having this error

 

TOTAL DATA PULLED: 0 B

Error: Tag latest not found in repository docker.io/nodebb/docker

57 minutes ago, tuxevil said:

 

thanks a lot!!!

 

but im having this error

 

TOTAL DATA PULLED: 0 B

Error: Tag latest not found in repository docker.io/nodebb/docker

As per the docs for the container, you need to specify the tag

 

To get started with running NodeBB using Docker, you will want to run a redis instance.

docker run --name my-forum-redis -d -p 6379:6379 nodebb/docker:centos-redis
docker run --name my-forum-redis -d -p 6379:6379 nodebb/docker:ubuntu-redis

 

 

The list of tags available is here:

https://hub.docker.com/r/nodebb/docker/tags/

 

After the repository (nodebb/docker) add :whateverTag when you re-add / edit the container

 

  • Author
33 minutes ago, Squid said:

As per the docs for the container, you need to specify the tag

 

To get started with running NodeBB using Docker, you will want to run a redis instance.


docker run --name my-forum-redis -d -p 6379:6379 nodebb/docker:centos-redis
docker run --name my-forum-redis -d -p 6379:6379 nodebb/docker:ubuntu-redis

 

 

The list of tags available is here:

https://hub.docker.com/r/nodebb/docker/tags/

 

After the repository (nodebb/docker) add :whateverTag when you re-add / edit the container

 

great! i could install it, but how cant i access, it show me "Update" insted of "WebUI" and name is in blue

 

 

nodebb.jpg

Edited by tuxevil
cant*

You can edit the container, hit advanced, and under WebUI type in http://[IP]:[80]  

  • Author
27 minutes ago, Squid said:

You can edit the container, hit advanced, and under WebUI type in http://[IP]:[80]  

 

im so sorry for bothering so much, im getting progress but still cant finish the process

 

so originally i installed ubuntu-redis but it doesnt seems it works

 

so i tried now with just  ubuntu and in the Logs i see this

 

2/3 15:54 [1] - [32minfo[39m: NodeBB v0.6.1 Copyright (C) 2013-2014 NodeBB Inc.
2/3 15:54 [1] - [32minfo[39m: This program comes with ABSOLUTELY NO WARRANTY.
2/3 15:54 [1] - [32minfo[39m: This is free software, and you are welcome to redistribute it under certain conditions.
2/3 15:54 [1] - [32minfo[39m:
2/3 15:54 [1] - [33mwarn[39m: Configuration not found, starting NodeBB setup
2/3 15:54 [1] - [32minfo[39m: Welcome to NodeBB!
2/3 15:54 [1] - [32minfo[39m: This looks like a new installation, so you'll have to answer a few questions about your environment before we can proceed.
2/3 15:54 [1] - [32minfo[39m: Press enter to accept the default setting (shown in brackets).
URL used to access this NodeBB (http://localhost:4567)

 

so, how can i press enter to continue the setup process

k  You'll have to initially install the container manually to set it up, due to how it works

Quote

docker run --name dockerdev-nodebb --link dockerdev-redis:redis -p 80:80 -p 443:443 -p 4567:4567 -P -t -i nodebb/docker:ubuntu 

Change the left hand numbers of the ports (ie: 80:80 to what you've got them mapped to on the template.  Also make sure that the --name entry matches what you called the app.

 

After the initial set up hopefully you'll be able to manage it through the webUI

  • Author
33 minutes ago, Squid said:

k  You'll have to initially install the container manually to set it up, due to how it works

Change the left hand numbers of the ports (ie: 80:80 to what you've got them mapped to on the template.  Also make sure that the --name entry matches what you called the app.

 

After the initial set up hopefully you'll be able to manage it through the webUI

ok, but where i can access the command shell to run that string?

telnet / putty / ssh or at the local console.  Login as root and you can run it.

  • Author
14 hours ago, Squid said:

telnet / putty / ssh or at the local console.  Login as root and you can run it.

 

no luck

 

root@LinksVServer:~# docker run --name nodeBB --link dockerdev-redis:redis -p 80:80 -p 443:443 -p 4567:4567 -P -t -i nodebb/docker:ubuntu
docker: Error response from daemon: Conflict. The name "/nodeBB" is already in use by container 0511c24ff1e5aa19e56d9f653dea0e552d3eecc7375c5d27eaafa07aafc1ed5a. You have to remove (or rename) that container to be able to reuse that name..
See 'docker run --help'.
root@LinksVServer:~#

Even if i do copy and paste exactly the instruction on https://hub.docker.com/r/nodebb/docker/ i get this message

 

root@LinksVServer:~# docker run --name my-forum-redis -d -p 6379:6379 nodebb/docker:ubuntu-redis
Unable to find image 'nodebb/docker:ubuntu-redis' locally
ubuntu-redis: Pulling from nodebb/docker
a3ed95caeb02: Pull complete
2de59b831a23: Already exists
a898f8c7f6ba: Already exists
706514fbad74: Already exists
2491c4f97e36: Pull complete
8ae00e24f6a2: Pull complete
38c9facf8277: Pull complete
Digest: sha256:db8e1b164eef1434f3963f2c3127498fa146c86cb24c4c6199ffe42de13bc515
Status: Downloaded newer image for nodebb/docker:ubuntu-redis
3901844108da8231ec26e9e8ed8a4b1a2399f05c549f1b367e1ff0754c01150a
root@LinksVServer:~# docker run --name dockerdev-nodebb --link dockerdev-redis:redis -p 80:80 -p 443:443 -p 4567:4567 -P -t -i nodebb/docker:ubuntu
docker: Error response from daemon: Could not get container for dockerdev-redis.
See 'docker run --help'.
root@LinksVServer:~#

:(

because the name in the first line is my-forum-redis  but you used dockerdev-nodebb in the second command

  • Author

it seems this is too hard for me so i will quit, ty for your patience anyway, i will just wait if someday someone will put in the official Apps list

 

root@LinksVServer:~# docker run --name my-forum-redis -d -p 6379:6379 nodebb/docker:ubuntu-redis
docker: Error response from daemon: Conflict. The name "/my-forum-redis" is already in use by container 3901844108da8231ec26e9e8ed8a4b1a2399f05c549f1b367e1ff0754c01150a. You have to remove (or rename) that container to be able to reuse that name..
See 'docker run --help'.
root@LinksVServer:~# docker run --name my-forum-redis --link dockerdev-redis:redis -p 80:80 -p 443:443 -p 4567:4567 -P -t -i nodebb/docker:ubuntu
docker: Error response from daemon: Conflict. The name "/my-forum-redis" is already in use by container 3901844108da8231ec26e9e8ed8a4b1a2399f05c549f1b367e1ff0754c01150a. You have to remove (or rename) that container to be able to reuse that name..
See 'docker run --help'.
root@LinksVServer:~#

 

Archived

This topic is now archived and is closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.