Dockerfile linksWhere to get help:
the Docker Community Forums, the Docker Community Slack, or Stack Overflow
Where to file issues:
https://github.com/RocketChat/Docker.Official.Image/issues
Maintained by:
Rocket.Chat
Published image artifact details:
repo-info repo's repos/rocket.chat/ directory (history)
(image metadata, transfer size, etc)
Image updates:
official-images PRs with label library/rocket.chat
official-images repo's library/rocket.chat file (history)
Source of this description:
docs repo's rocket.chat/ directory (history)
Supported Docker versions:
the latest release (down to 1.6 on a best-effort basis)
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.
First, start an instance of mongo:
$ docker run --name db -d mongo:3.0 --smallfiles
Then start Rocket.Chat linked to this mongo instance:
$ 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:
$ 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:
$ docker run --name rocketchat -p 80:3000 --env ROOT_URL=http://localhost --env MONGO_URL=mongodb://mymongourl/mydb -d rocket.chat
View license information for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in the repo-info repository's rocket.chat/ directory.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.