Skip to content

Instantly share code, notes, and snippets.

@madduci
Last active November 12, 2017 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madduci/90139f66beef6ee6f40bc085e58bbc89 to your computer and use it in GitHub Desktop.
Save madduci/90139f66beef6ee6f40bc085e58bbc89 to your computer and use it in GitHub Desktop.
version: '3.3'
services:
db:
image: mongo:latest
container_name: mongo
expose:
- "27017"
chat:
image: rocket.chat:latest
container_name: rocket
environment:
- ROOT_URL=http://0.0.0.0
ports:
- "20000:3000"
depends_on:
- db
links:
- db:mongo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment