轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥8起我的订单
文档
工具
提交工单页面收录
nodebb

nilsramsperger/nodebb

nilsramsperger
自动构建

一个用于快速启动NodeBB论坛的简单Docker镜像,内置Redis数据库(AOF持久化),支持数据持久化和配置管理,适合快速部署轻量级论坛。

9 次收藏下载次数: 0状态:自动构建维护者:nilsramsperger仓库类型:镜像最近更新:3 年前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这段话即可:

请先阅读并遵守:https://xuanyuan.cloud/agents.md

未读文档前不要生成 pull 命令或排错方案。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

DockerHub 官方简介
轩辕镜像中文简介
下载命令
镜像标签列表与下载命令
轩辕镜像,加速的不只是镜像。
点击查看

nilsramsperger/nodebb

A simple Docker image for quick-launching a NodeBB forum.

Description

This repo contains the files for the automatic build of the Docker image nilsramsperger/nodebb hosted on https://gitlab.com/nilsramsperger/docker-nodebb.

The NodeBB comes with no plugins and the forum data is stored in a http://redis.io within the container. The Redis is configured for http://redis.io/topics/persistence. Not the fastest but the least chance for data loss on unexpected shutdowns.

Stay up to date

New releases of the NodeBB image come with a corresponding tag in the repo. You can follow me on *** (@***) to be notified about updates.

Tags

  • latest
  • v2.8.12
  • v2.8.11
  • v2.8.10
  • v2.8.9
  • v2.8.8
  • v2.8.7
  • v2.8.6
  • v2.8.5
  • v2.8.2
  • v2.8.1
  • v2.8.0

Be advised, any other tags are for experimental purpose and might not be runnable. Best stick to latest or a specific version tag.

Setup

Create the container

docker create --name myNodeBB --init --restart always -p 4567:4567 -v nodebb-data:/var/lib/redis -v nodebb-files:/opt/nodebb/public/uploads -v nodebb-config:/etc/nodebb nilsramsperger/nodebb

In this case the container named myNodeBB and is bound to local port 4567. The three volumes are linked to the named volumes nodebb-data, nodebb-files and nodebb-config. Change things as you like.

Start the container

docker start myNodeBB

On first run, NodeBB will start it's web installer interface. There you can create your admin account and set things up. Switch the database to Redis and click "Install NodeBB". When everything is done, click "Launch NodeBB". The container will restart and the browser switch to the forum.

Environment Variables

Public URL

If your NodeBB forum is accessible via a public URL, it needs to be told about that. Otherwise some features might break. WebSockets for example. Tell NodeBB about it's public URL by setting the url environment variable on container creation. Example: -e url=https://www.myforum.com:8080

Timezone

Per default, the container uses UTC as timezone. If you want to specify a different timezone, add timezone as ENV on container creation. Example: -e timezone=Europe/Brussels

Volumes

  • /etc/nodebb contains NodeBB's config.json
  • /var/lib/redis contains the Redis data
  • /opt/nodebb/public/uploads contains NodeBB uploads like avatars

Backup and restore

Save the contents of the three volumes for creating a backup. To restore, copy the contents back.

Update to latest version

If you want to update your NodeBB to the latest version, make backups of the volumes first. After that just stop and remove your current container. Then recreate it with the create command from the install section. On startup, the container will run a nodebb upgrade and thus prepare the database for the new version of NodeBB.

Restarting

Since NodeBB is started via the app.js, restarting from admin panel is disabled. If you want to, just restart the container.

Troubleshooting

Problem

The NodeBB web-client notifies about broken web socket connections and tries to reestablish infinitely.

Solution

The public URL and port in the config.json are not set correctly. When creating the container, you can set the public URL via -e url="http://127.0.0.1:4567".

Problem

The web installer tells the database connection cannot be established and/or the container is restarting infinitely.

Solution

May be you are using preexisting named volumes or host volumes. If so, make sure redis can access them. Anyway, fresh named volumes is the preferred way.

Problem

Something went wrong while updating to a newer version of NodeBB. Now the forum is broken.

Solution

  • Delete the container.
  • Restore the volumes, using the backups you created before updating.
  • Create a new container using the create command from the install section with a fixed image version.
    • Append the version number of the previously used image to the image name.
    • For example: nilsramsperger/nodebb:v1.13.0

Problem

NodeBB shows an "invalid-event" error after performing updates and installation of the quill editor plugin. An example is documented here:

  • https://community.nodebb.org/topic/***/cannot-write-post-or-reply-after-1-15-1-16/4
  • https://github.com/nilsramsperger/docker-nodebb/pull/10

Solution

It is not quite sure, what actually caused the problem. The following actions solved the issue:

  • Make sure only quill or markdown and default composer are active.
  • Restart server and container

更多相关 Docker 镜像与资源

以下是 nilsramsperger/nodebb 相关的常用 Docker 镜像,适用于 不同场景 等不同场景:

  • elestio/nodebb Docker 镜像说明(Nodebb 容器镜像,适合 elestio 维护的 Nodebb 工作负载部署)

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 nodebb 镜像标签

docker pull docker.xuanyuan.run/nilsramsperger/nodebb:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull nilsramsperger/nodebb:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

爱快 4.0 · iKuai 镜像加速

宝塔面板

一键配置镜像源

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

专属域名用法

专属域名 · 开启停用 · 多仓库

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

docker.sock / daemon

账号

失败是否计费

manifest · blob · 计费

申请开票(企业 / 个人)

开票 · 发票 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
nilsramsperger/nodebb
定价查看流量套餐与价格
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥8/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥8/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多 nodebb 镜像推荐

elestio/nodebb logo

elestio/nodebb

elestio
Nodebb是一款基于现代Web技术构建的开源论坛与社区平台,具备实时互动、模块化扩展及响应式设计等特性,可助力用户快速搭建活跃的在线社区;该版本由Elestio进行专业验证与打包,确保了部署流程的简便性、代码的安全性及运行的稳定性,为开发者和社区管理者提供了可靠的即用型解决方案。
8 次收藏5万+ 次下载
7 天前更新
nodebb/docker logo

nodebb/docker

nodebb
基于Node.js的现代论坛软件,支持Redis、MongoDB或PostgreSQL数据库,利用WebSocket实现即时交互和实时通知,提供社交网络集成、插件扩展及灵活主题引擎。
64 次收藏10万+ 次下载
3 年前更新
blezek/nodebb logo

blezek/nodebb

blezek
NodeBB的Docker容器,用于快速部署基于Node.js的现代论坛系统,支持与Redis数据库集成,简化论坛搭建流程。
1万+ 次下载
10 年前更新
kindwave/nodebb logo

kindwave/nodebb

kindwave
kindwave/nodebb是一个NodeBB论坛的Docker镜像,用于快速部署论坛实例,通过默认配置提示(端口/主机名/Redis)和管理员信息设置后,使用forever命令启动,可访问localhost:4567使用。
5 次收藏5万+ 次下载
10 年前更新
scoussy/nodebb logo

scoussy/nodebb

scoussy
这是NodeBB开源论坛软件的Docker镜像,支持Redis或MongoDB数据库,可快速部署轻量级社区论坛,提供Web访问服务。
1万+ 次下载
9 年前更新
nibrev/nodebb logo

nibrev/nodebb

nibrev
NodeBB论坛软件Docker镜像,支持持久化存储,已在k8s环境测试,具备自动安装和更新功能,适用于快速部署现代化论坛系统。
3 次收藏1万+ 次下载
4 年前更新

查看更多 nodebb 相关镜像