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

22 lines
546 B

mongo:
image: mongo
# volumes:
# - ./data/runtime/mongo:/data/mongo
# - ./data/dump:/dump
command: mongod --smallfiles --replSet rs0 --oplogSize 128
rocketchat:
image: rocketchat/rocket.chat:develop
# volumes:
# - ./uploads:/app/uploads
environment:
- ROOT=3000
- ROOT_URL=http://yourhost:3000
- MONGO_URL=mongodb://mongo:27017/rocketchat
# uncomment and set the line below if you need to support mobile apps
# - DDP_DEFAULT_CONNECTION_URL=http://yourhost:3000
links:
- mongo:mongo
ports:
- 3000:3000