You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-30Lines changed: 2 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,39 +4,11 @@ Rocket.Chat is a Web Chat Server, developed in JavaScript, using the Meteor full
4
4
5
5
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.
6
6
7
-
%%LOGO%%
7
+

8
8
9
9
# How to use this image
10
10
### Docker Compose
11
-
If you need both the mongo and Rocket.Chat containers, use a docker compose one-liner:
12
11
13
-
docker compose up -d
12
+
This docker compose is deprecated, for update please refer to https://docs.rocket.chat/docs/deploy-with-docker-docker-composeor https://github.com/RocketChat/rocketchat-compose
14
13
15
-
Which will run both containers, with Rocket.Chat listening on http://localhost:3000
16
-
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.
17
-
18
-
Stop the containers with:
19
-
20
-
docker compose down
21
-
22
-
### Individual containers
23
-
First, start an instance of mongo:
24
-
25
-
docker run --name db -d mongo:4.0 mongod --smallfiles
26
-
27
-
Then start Rocket.Chat linked to this mongo instance:
28
-
29
-
docker run --name rocketchat --link db:db -d rocket.chat
30
-
31
-
This will start a Rocket.Chat instance listening on the default Meteor port of 3000 on the container.
32
-
33
-
If you'd like to be able to access the instance directly at standard port on the host machine:
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.
38
-
39
-
If you're using a third party Mongo provider, or working with Kubernetes, you need to override the `MONGO_URL` environment variable:
0 commit comments