diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000000000..594684228cd06 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +.git +.gitignore +LICENSE +README.md +docker-compose.yml \ No newline at end of file diff --git a/README.md b/README.md index 5dfcf8b406296..c869fee8d41f5 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,14 @@ The Complete Open Source Chat Solution Checkout the latest version at [https://demo.rocket.chat](https://demo.rocket.chat) +Try it with docker: + +``` +docker-compose up +``` + +and check it out at http://localhost:80 + Download the Native Cross-Platform Desktop Application at [Rocket.Chat.Electron](https://github.com/RocketChat/Rocket.Chat.Electron/releases) [![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=49QX7TYCVZK8L) @@ -112,12 +120,18 @@ Use the automated build at our [Official Docker Registry](https://registry.hub.d docker pull rocketchat/rocket.chat ``` +### sloppy.io + +Host your docker container at [sloppy.io](http://sloppy.io). Get an account and use the [quickstarter](https://github.com/sloppyio/quickstarters/tree/master/rocketchat) + ### Heroku Host your own Rocket.Chat server for **FREE** with [One-Click Deploy](https://heroku.com/deploy?template=https://github.com/RocketChat/Rocket.Chat/tree/master) [![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy?template=https://github.com/RocketChat/Rocket.Chat/tree/master) + + ## Development Installation Prerequisites: @@ -133,6 +147,14 @@ cd Rocket.Chat meteor ``` +or use docker: + +``` +git clone https://github.com/RocketChat/Rocket.Chat.git +cd Rocket.Chat +docker run -it -p 3000:3000 -v "$(pwd)":/app danieldent/meteor +``` + ## Credits Thanks to diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000000000..306491bdf6ac4 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +rocketchat: + image: rocketchat/rocket.chat + environment: + - MONGO_URL=mongodb://mongodb/rocketchat + - ROOT_URL=http://localhost:80 + links: + - mongodb + ports: + - 80:80 + +mongodb: + image: mongo + ports: + - 27017