# Rocket.Chat
Rocket.Chat is a Web Chat Server, developed in JavaScript, using the Meteor fullstack framework.
It is a great solution for communities and companies wanting to privately host their own chat service or for developers looking forward to build and evolve their own chat platforms.
%%LOGO%%
# How to use this image
### Docker Compose
If you need both the mongo and Rocket.Chat containers, use a docker compose one-liner:
docker-compose up -d
Which will run both containers, with Rocket.Chat listening on http://localhost:3000
Then, access it via `http://localhost:3000` in a browser. Replace `localhost` in `ROOT_URL` with your own domain name if you are hosting at your own domain.
Stop the containers with:
docker compose down
### Individual containers
First, start an instance of mongo:
docker run --name db -d mongo:4.0 mongod --smallfiles
Then start Rocket.Chat linked to this mongo instance:
docker run --name rocketchat --link db:db -d rocket.chat
This will start a Rocket.Chat instance listening on the default Meteor port of 3000 on the container.
If you'd like to be able to access the instance directly at standard port on the host machine:
docker run --name rocketchat -p 80:3000 --env ROOT_URL=http://localhost --link db:db -d rocket.chat
Then, access it via `http://localhost` in a browser. Replace `localhost` in `ROOT_URL` with your own domain name if you are hosting at your own domain.
If you're using a third party Mongo provider, or working with Kubernetes, you need to override the `MONGO_URL` environment variable:
docker run --name rocketchat -p 80:3000 --env ROOT_URL=http://localhost --env MONGO_URL=mongodb://mymongourl/mydb -d rocket.chat
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
官方存储库rocket.chat_Dockerfile_Shell_下载.zip (13个子文件)
Docker.Official.Image-master
traefik.yml 853B
UPDATE.md 170B
generate-stackbrew-library.sh 2KB
env.example 759B
5.2
Dockerfile 4KB
6.0
Dockerfile 4KB
compose.yml 2KB
5.3
Dockerfile 4KB
5.4
Dockerfile 4KB
.gitignore 7B
.dockerignore 12B
README.md 2KB
update.sh 590B
共 13 条
- 1
资源评论
快撑死的鱼
- 粉丝: 1w+
- 资源: 9149
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功