Docker安装 Fiora及使用

玩技站长
玩技站长
玩技站长
管理员, Keymaster
10824
文章
669
评论
运维笔记评论1,409字数 248阅读0分49秒阅读模式

说明:Fiora是一款偏二次元的Web多人在线聊天应用,使用Node.jsMongodbSocket.ioReact编写,使用起来还行,挺简洁的,这里水个搭建教程,有兴趣的可以玩玩。

截图

Docker安装 Fiora及使用插图
Docker安装 Fiora及使用插图1文章源自玩技e族-https://www.playezu.com/21791.html

功能

    • 好友,群组,私聊,群聊
    • 文本,图片,代码,url等多种类型消息
    • 贴吧表情,滑稽表情,搜索表情包
    • 桌面通知,声音提醒,语音播报
    • 自定义桌面背景,主题颜色,文本颜色
    • 查看在线用户,@功能
    • 小黑屋禁言

安装介绍:

第一步:拉取官方镜像 suisuijiang/fiora 和数据库 mongo文章源自玩技e族-https://www.playezu.com/21791.html

Docker安装 Fiora及使用插图2文章源自玩技e族-https://www.playezu.com/21791.html

第二步:创建一个虚拟网络文章源自玩技e族-https://www.playezu.com/21791.html

  1. docker network create fiora-network

第三步:启动数据库文章源自玩技e族-https://www.playezu.com/21791.html

  1. docker run --name fioradb -p 27017:27017 --network fiora-network mongo

第四步:启动主程序文章源自玩技e族-https://www.playezu.com/21791.html

  1. docker run --name fiora -p 9200:9200 --network fiora-network -e Database=mongodb://fioradb:27017/fiora suisuijiang/fiora

本地构建映像并运行

  1. 将项目克隆到本地 git clone https://github.com/yinxin630/fiora.git -b master
  2. 建立形象 docker-compose build --no-cache --force-rm
  3. 运行 docker-compose up
文章源自玩技e族-https://www.playezu.com/21791.html文章源自玩技e族-https://www.playezu.com/21791.html
 
匿名

发表评论

匿名网友
确定

拖动滑块以完成验证