The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/docker-compose.yml

18 lines
325 B

db:
image: mongo
# volumes:
# - ./data/runtime/db:/data/db
# - ./data/dump:/dump
command: mongod --smallfiles
rocketchat:
image: rocketchat/rocket.chat
environment:
- ROOT=3000
- ROOT_URL=http://yourhost:3000
- MONGO_URL=mongodb://db:27017/rocketchat
links:
- db:db
ports:
- 3000:3000