1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-24 08:52:15 +02:00

add rocket.chat

This commit is contained in:
kev 2015-08-27 00:29:37 +08:00
parent 9e4f951162
commit e4e5a3f3ed
2 changed files with 16 additions and 0 deletions

View File

@ -74,4 +74,5 @@ dockerfiles
- [x] openvpn
- [x] owncloud
- [x] registrator
- [x] rocket.chat

View File

@ -0,0 +1,15 @@
rocketchat:
image: rocket.chat
ports:
- "3000:3000"
links:
- mongo:db
environment:
- ROOT_URL=http://chat.foobar.site
restart: always
mongo:
image: mongo
ports:
- "27017:27017"
restart: always