mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-08 04:04:42 +02:00
20 lines
453 B
Markdown
20 lines
453 B
Markdown
Rocket.Chat
|
|
===========
|
|
|
|
![](https://rocket.chat/images/default/logo--dark.svg)
|
|
|
|
[Rocket.Chat][1] is a Web Chat Server, developed in JavaScript, using the Meteor fullstack framework.
|
|
|
|
## up and running
|
|
|
|
```bash
|
|
$ docker-compose up -d mongo
|
|
$ docker-compose exec mongo mongo
|
|
>>> rs.initiate({_id: 'rs0', members: [{_id: 0, host: 'localhost:27017'}]})
|
|
>>> exit
|
|
$ docker-compose up -d rocketchat
|
|
$ curl http://127.0.0.1:3000
|
|
```
|
|
|
|
[1]: https://rocket.chat/
|