87 lines
3.6 KiB
Markdown
87 lines
3.6 KiB
Markdown
<!--
|
|
|
|
********************************************************************************
|
|
|
|
WARNING:
|
|
|
|
DO NOT EDIT "rocket.chat/README.md"
|
|
|
|
IT IS AUTO-GENERATED
|
|
|
|
(from the other files in "rocket.chat/" combined with a set of templates)
|
|
|
|
********************************************************************************
|
|
|
|
-->
|
|
|
|
# Supported tags and respective `Dockerfile` links
|
|
|
|
- [`0.58.2`, `0.58`, `0`, `latest` (*Dockerfile*)](https://github.com/RocketChat/Docker.Official.Image/blob/29af83db6144476190ecdd29d0dea902167cd9f8/Dockerfile)
|
|
|
|
# Quick reference
|
|
|
|
- **Where to get help**:
|
|
[the Docker Community Forums](https://forums.docker.com/), [the Docker Community Slack](https://blog.docker.com/2016/11/introducing-docker-community-directory-docker-community-slack/), or [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=docker)
|
|
|
|
- **Where to file issues**:
|
|
[https://github.com/RocketChat/Docker.Official.Image/issues](https://github.com/RocketChat/Docker.Official.Image/issues)
|
|
|
|
- **Maintained by**:
|
|
[Rocket.Chat](https://github.com/RocketChat/Docker.Official.Image)
|
|
|
|
- **Published image artifact details**:
|
|
[repo-info repo's `repos/rocket.chat/` directory](https://github.com/docker-library/repo-info/blob/master/repos/rocket.chat) ([history](https://github.com/docker-library/repo-info/commits/master/repos/rocket.chat))
|
|
(image metadata, transfer size, etc)
|
|
|
|
- **Image updates**:
|
|
[official-images PRs with label `library/rocket.chat`](https://github.com/docker-library/official-images/pulls?q=label%3Alibrary%2Frocket.chat)
|
|
[official-images repo's `library/rocket.chat` file](https://github.com/docker-library/official-images/blob/master/library/rocket.chat) ([history](https://github.com/docker-library/official-images/commits/master/library/rocket.chat))
|
|
|
|
- **Source of this description**:
|
|
[docs repo's `rocket.chat/` directory](https://github.com/docker-library/docs/tree/master/rocket.chat) ([history](https://github.com/docker-library/docs/commits/master/rocket.chat))
|
|
|
|
- **Supported Docker versions**:
|
|
[the latest release](https://github.com/docker/docker/releases/latest) (down to 1.6 on a best-effort basis)
|
|
|
|
# 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.
|
|
|
|

|
|
|
|
# How to use this image
|
|
|
|
First, start an instance of mongo:
|
|
|
|
```console
|
|
$ docker run --name db -d mongo:3.0 --smallfiles
|
|
```
|
|
|
|
Then start Rocket.Chat linked to this mongo instance:
|
|
|
|
```console
|
|
$ docker run --name rocketchat --link 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:
|
|
|
|
```console
|
|
$ docker run --name rocketchat -p 80:3000 --env ROOT_URL=http://localhost --link 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:
|
|
|
|
```console
|
|
$ docker run --name rocketchat -p 80:3000 --env ROOT_URL=http://localhost --env MONGO_URL=mongodb://mymongourl/mydb -d rocket.chat
|
|
```
|
|
|
|
# License
|
|
|
|
View [license information](https://github.com/RocketChat/Rocket.Chat/blob/master/LICENSE) for the software contained in this image.
|